Skip to content

Commit

Permalink
Bump to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorDiaconu committed Oct 3, 2019
1 parent ef3a05f commit 70c5f84
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
Package.describe({
name: "cultofcoders:apollo",
version: "0.9.2",
name: 'cultofcoders:apollo',
version: '0.9.3',
// 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.13");
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.13');
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');
});

0 comments on commit 70c5f84

Please sign in to comment.