Skip to content

Commit

Permalink
Make the package.js compatible with Meteor 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apendua committed Mar 27, 2015
1 parent 4a5f059 commit 767712c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 27 deletions.
9 changes: 8 additions & 1 deletion package.js
Expand Up @@ -11,10 +11,17 @@ Npm.depends({
'chai-things' : '0.2.0',
});

(Package.registerBuildPlugin || Package._transitional_registerBuildPlugin)({
name: "collectGagarinBuildArtifacts",
sources: [
'meteor/plugin.js'
],
});

Package.on_use(function (api) {

if (api.versionsFrom) {
api.versionsFrom('METEOR@1.0');
api.versionsFrom('METEOR@0.9.0');
}

api.use('livedata', 'server');
Expand Down
49 changes: 23 additions & 26 deletions versions.json
@@ -1,75 +1,72 @@
{
"dependencies": [
[
"base64",
"1.0.1"
],
[
"callback-hook",
"1.0.1"
"1.0.0"
],
[
"check",
"1.0.2"
"1.0.0"
],
[
"ddp",
"1.0.12"
"deps",
"1.0.1"
],
[
"ejson",
"1.0.4"
"1.0.0"
],
[
"geojson-utils",
"1.0.1"
"1.0.0"
],
[
"id-map",
"1.0.1"
"1.0.0"
],
[
"json",
"1.0.1"
"1.0.0"
],
[
"livedata",
"1.0.11"
"1.0.7"
],
[
"logging",
"1.0.5"
"1.0.2"
],
[
"meteor",
"1.1.3"
"1.0.2"
],
[
"minimongo",
"1.0.5"
"1.0.1"
],
[
"ordered-dict",
"1.0.1"
"1.0.0"
],
[
"random",
"1.0.1"
"1.0.0"
],
[
"retry",
"1.0.1"
],
[
"tracker",
"1.0.3"
"1.0.0"
],
[
"underscore",
"1.0.1"
"1.0.0"
]
],
"pluginDependencies": [
[
"collectGagarinBuildArtifacts",
{}
]
],
"pluginDependencies": [],
"toolVersion": "meteor-tool@1.0.36",
"toolVersion": "meteor-tool@1.0.25",
"format": "1.0"
}

0 comments on commit 767712c

Please sign in to comment.