我有一个ember-cli的ember应用程序在我的MacBook Pro上完美运行。现在我已经在另一台MacBook Pro上安装了ember,下载了相同的git repo并运行ember s
,这给了我这个错误跟踪:
compiler.js:17942:7)
Walker.visit (/Users/Jensherf/shopstar-u/bower_components/ember/ember-template-compiler.js:17910:12)
visitors.Program (/Users/Jensherf/shopstar-u/bower_components/ember/ember-template-compiler.js:17919:16)
Path or pattern "vendor/ic-ajax/dist/named-amd/main.js" did not match any files
Error: Path or pattern "vendor/ic-ajax/dist/named-amd/main.js" did not match any files
at Object.multiGlob (/Users/Jensherf/shopstar-u/node_modules/broccoli-kitchen-sink-helpers/index.js:203:13)
at Class.module.exports.CachingWriter.extend.addFiles (/Users/Jensherf/shopstar-u/node_modules/broccoli-sourcemap-concat/concat-with-maps.js:74:13)
at Class.module.exports.CachingWriter.extend.updateCache (/Users/Jensherf/shopstar-u/node_modules/broccoli-sourcemap-concat/concat-with-maps.js:52:12)
at /Users/Jensherf/shopstar-u/node_modules/broccoli-sourcemap-concat/node_modules/broccoli-caching-writer/index.js:92:34
at lib$rsvp$$internal$$tryCatch (/Users/Jensherf/shopstar-u/node_modules/rsvp/dist/rsvp.js:489:16)
at lib$rsvp$$internal$$invokeCallback (/Users/Jensherf/shopstar-u/node_modules/rsvp/dist/rsvp.js:501:17)
at lib$rsvp$$internal$$publish (/Users/Jensherf/shopstar-u/node_modules/rsvp/dist/rsvp.js:472:11)
at Object.lib$rsvp$asap$$flush [as _onImmediate] (/Users/Jensherf/shopstar-u/node_modules/rsvp/dist/rsvp.js:1290:9)
at processImmediate [as _immediateCallback] (timers.js:345:15)
在此输出中,句子“Path or pattern "vendor/ic-ajax/dist/named-amd/main.js" did not match any files
”为红色。
我无法弄清楚如何解决这个问题。为什么应用程序会在此库的vendor/
文件夹中查找?不应该在凉亭组件或节点模块中吗?有没有人知道这个文件应该包含什么内容?
这是我的.gitignore文件,只是为了完整性:
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
# dependencies
/node_modules
/bower_components
# misc
/.sass-cache
/connect.lock
/coverage/*
/libpeerconnection.log
npm-debug.log
testem.log
答案 0 :(得分:1)
在ember-cli-ic-ajax
repo上发现可能是答案的问题。
0.2.0仅对未来版本的ember-cli有效,您应该使用0.1.4
答案 1 :(得分:-1)
你在package.json中有“ember-cli-ic-ajax”的条目吗?如果不是,那是因为你忘了 - 当你在另一台机器上安装它时保存。您可以在第一台笔记本电脑上执行 npm install --save ember-cli-ic-ajax (或者只是手动编辑文件)然后提交您的更改,一切都应该很好。
答案 2 :(得分:-1)
我有同样的错误。为我解决的是bower install ic-ajax --save
。希望这对其他任何人都有帮助。