Skip to content

Instantly share code, notes, and snippets.

@jagill
Created December 13, 2013 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jagill/7953578 to your computer and use it in GitHub Desktop.
Save jagill/7953578 to your computer and use it in GitHub Desktop.
My application fails to build when upgrading from Meteor 0.6.6.3 to 0.6.7-rc0.
jag@coati:~/madeye/integration-tests/apogee (develop)$ meteor --settings "$PWD/settings.json" --port $MADEYE_APOGEE_PORT --release 0.6.7-rc0 --raw-logs
=> Using Meteor 0.6.7-rc0 as requested (overriding Meteor 0.6.6.3)
[[[[[ ~/madeye/integration-tests/apogee ]]]]]
iron-router: updating npm dependencies -- connect...
stripe: updating npm dependencies -- stripe...
npm ERR! missing: coffee-script@1.6.3, required by pince@0.0.4
npm ERR! missing: underscore@1.5.2, required by pince@0.0.4
npm ERR! missing: moment@2.4.0, required by pince@0.0.4
npm ERR! missing: cli-color@0.2.3, required by pince@0.0.4
npm ERR! not ok code 0
=> Errors prevented startup:
While building package `pince`:
error: couldn't read npm version lock information
=> Your application has errors. Waiting for file change.
^C
jag@coati:~/madeye/integration-tests/apogee (develop)$ ls packages/pince/
README.md index.js package.js package.json smart.json src/
jag@coati:~/madeye/integration-tests/apogee (develop)$ cat packages/pince/package.js
Package.describe({
summary: "A logger for Meteor inspired by log4j and commons-logging."
});
Npm.depends({
moment: '2.4.0',
'cli-color': '0.2.3'
});
Package.on_use(function (api, where) {
api.use(["coffeescript", 'underscore'], ["client", "server"]);
api.add_files(["src/microevent.coffee"], 'client');
api.add_files(['src/console.coffee', "src/logger.coffee"], ["client", 'server']);
if (api.export) //compat with pre-0.6.5
api.export("Pince", ["server", "client"]);
api.export("Logger", ["server", "client"]);
api.export("MicroEvent", ["client"]);
});
jag@coati:~/madeye/integration-tests/apogee (develop)$ cat packages/pince/package.json
{
"name": "pince",
"version": "0.0.4",
"description": "A logger for node inspired by log4j and commons-logging.",
"keywords": [
"logging",
"logger",
"log4j"
],
"private": false,
"homepage": "https://github.com/mad-eye/pince",
"author": {
"name": "James A. Gill",
"url": "https://github.com/jagill"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mad-eye/pince"
},
"main": "./index.js",
"dependencies": {
"coffee-script": "1.6.3",
"underscore": "1.5.2",
"moment": "2.4.0",
"cli-color": "0.2.3"
}
}
jag@coati:~/madeye/integration-tests/apogee (develop)$ cat packages/pince/smart.json
{
"name": "pince",
"description": "A logger for Meteor inspired by log4j and commons-logging.",
"homepage": "https://github.com/mad-eye/pince",
"author": "James Gill (https://github.com/jagill)",
"version": "0.0.4",
"git": "https://github.com/mad-eye/pince.git"
}
jag@coati:~/madeye/integration-tests/apogee (develop)$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment