gpt4 book ai didi

javascript - Debowerify 无法与 Grunt 一起使用

转载 作者:行者123 更新时间:2023-12-03 11:47:37 25 4
gpt4 key购买 nike

我在我的项目中安装了 debowerify 并将其转换添加到我的 Gruntfile.js 中,这是一个片段:

grunt.initConfig({

browserify: {
app: {
files: { 'public/javascripts/build/app.js': ['public/javascripts/app.js'] },
options: {
transform: ['node-underscorify','debowerify']
}
}
}
});

然后我安装了一个模块(例如 Bower install bootstrap --save)。

在我的 app.js 文件中,我尝试包含该模块:

var bootstrap = require('bootstrap');

...并得到:

Running "browserify:home" (browserify) task Error: module "bootstrap" not found

我的文件夹结构如下所示:

/
- app/
- bower_components/
- bootstrap/
- node_modules/
- public/
- javascript/
- app.js
- build/
- app.js
- bower.json
- Gruntfile.js

最佳答案

您可以在 https://github.com/mallim/browserify_angular_minify 中检查我的 debowerify 设置(没有 Node 下划线)

同时,我会建议而不是

var bootstrap = require('bootstrap');

我会尝试

require('bootstrap');

关于javascript - Debowerify 无法与 Grunt 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25982094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com