我正在尝试使用ember-browserify在我的Ember应用中使用bootbox。我已经像npm模块一样安装了bootbox,并在代码旁边添加了:
import Bootbox from 'npm:bootbox';
使用ember-cli进行编译时遇到错误:
The Broccoli Plugin: [object Object] failed with:
Error: Cannot find module 'jquery' from '/Users/Crabar/Documents/Programming/EmberDrinkIt/node_modules/bootbox'
版本:Ember 2.2.0,EmberCLI 2.4.3
答案 0 :(得分:0)
您是否尝试在 Brocfile.js 中导入节点模块?
app.import('node_modules/<path_to_module>.js');