-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62d8860
commit 5976ead
Showing
3 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// the zodern:meteor-package-versions compiler replaces this file with | ||
// the list of packages and their versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,11 +100,12 @@ Package.onTest(function (api) { | |
], ['client', 'server']); | ||
}); | ||
|
||
function configurePackage(api, isTesting) { | ||
function configurePackage (api, isTesting) { | ||
api.versionsFrom('[email protected]'); | ||
api.use('montiapm:[email protected]', ['server']); | ||
api.use('meteorhacks:[email protected]', { weak: true }); | ||
api.use('simple:[email protected]', { weak: true }); | ||
api.use('zodern:[email protected]'); | ||
|
||
/** | ||
* Uncomment once fibers is removed from the package. | ||
|
@@ -116,8 +117,7 @@ function configurePackage(api, isTesting) { | |
'underscore', 'random', 'webapp', 'ecmascript' | ||
], ['server']); | ||
|
||
// http package constraints is currently broken in alpha 18 | ||
// api.use(['[email protected]', 'email'], 'server', { weak: !isTesting }); | ||
api.use(['http', 'email'], 'server', { weak: !isTesting }); | ||
|
||
api.use('fetch', 'server', { | ||
weak: !isTesting, | ||
|