Skip to content

Commit da629cb

Browse files
committed
added meteor 0.9 support
with the backword compatibility with meteorite
1 parent 19d24ae commit da629cb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

package.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Package.describe({
2-
summary: "Allow injection of arbitrary data to initial Meteor HTML page"
2+
summary: "Allow injection of arbitrary data to initial Meteor HTML page",
3+
version: "1.0.0",
4+
git: "https://github.com/gadicc/meteor-inject-initial.git",
5+
name: "meteorhacks:inject-initial"
36
});
47

58
Npm.depends({
@@ -22,6 +25,10 @@ Package.on_test(function(api) {
2225
});
2326

2427
function configurePackage(api) {
28+
if(api.versionsFrom) {
29+
api.versionsFrom('METEOR@0.9.0');
30+
}
31+
2532
api.use('routepolicy', 'server');
2633
api.use(['ejson', 'underscore'], ['client','server']);
2734

0 commit comments

Comments
 (0)