-
Notifications
You must be signed in to change notification settings - Fork 25
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
560f518
commit 6a7197e
Showing
2 changed files
with
41 additions
and
33 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
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 |
---|---|---|
@@ -1,49 +1,49 @@ | ||
Package.describe({ | ||
name: 'cultofcoders:apollo', | ||
version: '0.8.1', | ||
name: "cultofcoders:apollo", | ||
version: "0.9.0", | ||
// Brief, one-line summary of the package. | ||
summary: 'Meteor & Apollo integration', | ||
summary: "Meteor & Apollo integration", | ||
// URL to the Git repository containing the source code for this package. | ||
git: 'https://github.com/cult-of-coders/apollo.git', | ||
git: "https://github.com/cult-of-coders/apollo.git", | ||
// By default, Meteor will default to using README.md for documentation. | ||
// To avoid submitting documentation, set this field to null. | ||
documentation: 'README.md', | ||
documentation: "README.md" | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.3'); | ||
api.use('ecmascript'); | ||
api.use('check'); | ||
api.use('ejson'); | ||
api.use('mongo'); | ||
|
||
api.use('tmeasday:check-npm-versions@0.3.2'); | ||
api.use('cultofcoders:grapher@1.3.10'); | ||
api.use('cultofcoders:grapher-schema-directives@0.1.8'); | ||
api.use('accounts-base', { weak: true }); | ||
|
||
api.mainModule('client/index.js', 'client'); | ||
api.mainModule('server/index.js', 'server'); | ||
api.versionsFrom("1.3"); | ||
api.use("ecmascript"); | ||
api.use("check"); | ||
api.use("ejson"); | ||
api.use("mongo"); | ||
|
||
api.use("tmeasday:check-npm-versions@0.3.2"); | ||
api.use("cultofcoders:grapher@1.3.10"); | ||
api.use("cultofcoders:grapher-schema-directives@0.1.8"); | ||
api.use("accounts-base", { weak: true }); | ||
|
||
api.mainModule("client/index.js", "client"); | ||
api.mainModule("server/index.js", "server"); | ||
}); | ||
|
||
Npm.depends({ | ||
cookie: '0.4.0', | ||
cookie: "0.4.0" | ||
}); | ||
|
||
Package.onTest(function(api) { | ||
api.use('cultofcoders:apollo'); | ||
api.use("cultofcoders:apollo"); | ||
|
||
var packages = [ | ||
'ecmascript', | ||
'accounts-password', | ||
'cultofcoders:apollo-accounts@3.4.0', | ||
'mongo', | ||
"ecmascript", | ||
"accounts-password", | ||
"cultofcoders:apollo-accounts@3.4.0", | ||
"mongo" | ||
]; | ||
|
||
api.use(['meteortesting:mocha']); | ||
api.use(["meteortesting:mocha"]); | ||
|
||
api.use(packages); | ||
|
||
api.mainModule('__tests__/server.js', 'server'); | ||
api.mainModule('__tests__/client.js', 'client'); | ||
api.mainModule("__tests__/server.js", "server"); | ||
api.mainModule("__tests__/client.js", "client"); | ||
}); |