Created
January 6, 2013 06:53
-
-
Save 9z0b3t1c/4465687 to your computer and use it in GitHub Desktop.
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
Same pb here with coffee-script - either with or w/o -g
I fixed the missing treefy error due to a typo in puts package.json (ie treeify instead of treefy) - but for whatever reason the resolution of coffee-script fails :
$ npm install coffee-script
npm http GET https://registry.npmjs.org/coffee-script/1.4.0
npm http 304 https://registry.npmjs.org/coffee-script/1.4.0
[email protected] node_modules/coffee-script
$ npm install
> [email protected] install /var/www/aphnode
> node node_modules/coffee-script/bin/cake build
:)
then I check the dependencies :
sudo npm list
npm WARN unmet dependency /var/www/appfolder/node_modules/docco-husky requires coffee-script@'latest' but will load
npm WARN unmet dependency /var/www/appfolder/node_modules/coffee-script,
npm WARN unmet dependency which is version 1.4.0
[email protected] /var/www/appfolder
├ [email protected] invalid
...
npm ERR! invalid: [email protected] /var/www/appfolder/node_modules/coffee-script
npm ERR! not ok code 0
Any idea ?
I get the same issue:
╰─ npm install 1 ↵
npm http GET https://registry.npmjs.org/coffee-script
npm http 304 https://registry.npmjs.org/coffee-script
> [email protected] install path/to/project
> node node_modules/coffee-script/bin/cake build
GO TEEM! :)
npm WARN unmet dependency path/to/node_modules/docco-husky requires coffee-script@'latest' but will load
npm WARN unmet dependency path/to/node_modules/coffee-script,
npm WARN unmet dependency which is version 1.5.0
[email protected] node_modules/treeify
[email protected] node_modules/coffee-script
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
looks like coffee-script is invalid, you may want to try:
Thanks
Tom