-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade to Meteor 0.9 (resolves #27)
- Loading branch information
Showing
17 changed files
with
260 additions
and
99 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,5 @@ | ||
# This file contains information which helps Meteor properly upgrade your | ||
# app when you run 'meteor update'. You should check it into version control | ||
# with your project. | ||
|
||
notices-for-0.9.0 |
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,7 @@ | ||
# This file contains a token that is unique to your project. | ||
# Check it into your repository along with the rest of this directory. | ||
# It can be used for purposes such as: | ||
# - ensuring you don't accidentally deploy one app on top of another | ||
# - providing package authors with aggregated statistics | ||
|
||
59puyv187auw3btwm6l |
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 |
---|---|---|
|
@@ -4,15 +4,17 @@ | |
# but you can also edit it by hand. | ||
|
||
standard-app-packages | ||
bootstrap-3 | ||
iron-router | ||
jquery | ||
viewer | ||
iron-router-progress | ||
filepicker | ||
mrt:iron-router-progress@0.4.1 | ||
mrt:filepicker@0.4.0 | ||
http | ||
cron | ||
mrt:cron@0.0.1 | ||
force-ssl | ||
npm | ||
fastclick | ||
kadira | ||
meteorhacks:npm | ||
percolatestudio:[email protected] | ||
iron:router | ||
mizzao:bootstrap-3 | ||
|
||
|
||
npm-container |
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 +1 @@ | ||
0.8.3 | ||
[email protected] |
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,5 +1,4 @@ | ||
{ | ||
"node-uuid": "1.4.0", | ||
"sleep": "1.1.4", | ||
"box-view": "0.1.8" | ||
} |
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 @@ | ||
.build* |
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 @@ | ||
node_modules |
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,7 @@ | ||
This directory and the files immediately inside it are automatically generated | ||
when you change this package's NPM dependencies. Commit the files in this | ||
directory (npm-shrinkwrap.json, .gitignore, and this README) to source control | ||
so that others run the same versions of sub-dependencies. | ||
|
||
You should NOT check in the node_modules directory that Meteor automatically | ||
creates; if you are using git, the .gitignore file tells git to ignore it. |
105 changes: 105 additions & 0 deletions
105
packages/npm-container/.npm/package/npm-shrinkwrap.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,9 @@ | ||
Meteor.npmRequire = function(moduleName) { // 74 | ||
var module = Npm.require(moduleName); // 75 | ||
return module; // 76 | ||
}; // 77 | ||
// 78 | ||
Meteor.require = function(moduleName) { // 79 | ||
console.warn('Meteor.require is deprecated. Please use Meteor.npmRequire instead!'); // 80 | ||
return Meteor.npmRequire(moduleName); // 81 | ||
}; // 82 |
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,21 @@ | ||
var path = Npm.require('path'); // 86 | ||
var fs = Npm.require('fs'); // 87 | ||
// 88 | ||
Package.describe({ // 89 | ||
summary: 'Contains all your npm dependencies', // 90 | ||
version: '1.0.0', // 91 | ||
name: 'npm-container' // 92 | ||
}); // 93 | ||
// 94 | ||
var packagesJsonFile = path.resolve('./packages.json'); // 95 | ||
try { // 96 | ||
var fileContent = fs.readFileSync(packagesJsonFile); // 97 | ||
var packages = JSON.parse(fileContent.toString()); // 98 | ||
Npm.depends(packages); // 99 | ||
} catch(ex) { // 100 | ||
console.error('ERROR: packages.json parsing error [ ' + ex.message + ' ]'); // 101 | ||
} // 102 | ||
// 103 | ||
Package.onUse(function(api) { // 104 | ||
api.add_files(['index.js', '../../packages.json'], 'server'); // 105 | ||
}); // 106 |
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,15 @@ | ||
{ | ||
"dependencies": [ | ||
[ | ||
"meteor", | ||
"1.0.2" | ||
], | ||
[ | ||
"underscore", | ||
"1.0.0" | ||
] | ||
], | ||
"pluginDependencies": [], | ||
"toolVersion": "[email protected]", | ||
"format": "1.0" | ||
} |
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,19 @@ | ||
{ | ||
"dependencies": [ | ||
[ | ||
"jquery", | ||
"1.0.0" | ||
], | ||
[ | ||
"meteor", | ||
"1.0.2" | ||
], | ||
[ | ||
"underscore", | ||
"1.0.0" | ||
] | ||
], | ||
"pluginDependencies": [], | ||
"toolVersion": "[email protected]", | ||
"format": "1.0" | ||
} |
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,16 +1,7 @@ | ||
{ | ||
"packages": { | ||
"bootstrap-3": {}, | ||
"iron-router": "0.8.2", | ||
"iron-router-progress": {}, | ||
"filepicker": {}, | ||
"viewer": { | ||
"path": "packages/viewer" | ||
}, | ||
"cron": {}, | ||
"npm": {}, | ||
"fastclick": {}, | ||
"kadira": {}, | ||
"iron-router-ga": {} | ||
} | ||
} | ||
} |
Oops, something went wrong.