我正在尝试使用早午餐来编译代码,但是js/components.js
行无法编译。
我尝试将正则表达式的路径更改为普通链接,但是似乎没有什么使我的components.js得以编写。
运行早午餐版本-d不会给我任何有关那些文件的信息。
// package.json
"dependencies": {
"babel-brunch": "^7.0.1",
"brunch": "^2.10.17",
"clean-css-brunch": "^2.10.0",
"javascript-brunch": "^2.10.0",
"sass-brunch": "^2.10.8",
"uglify-js-brunch": "^2.10.0"
}
// brunch-config.js
module.exports = {
paths: {
'public': 'web',
'watched': ['app/Resources']
},
files: {
javascripts: {
joinTo: {
'js/app.js': /^app/,
// the next line is where my problem is
'js/components.js': /^bower_components\/uikit\/dist\/js\/components/
}
},
stylesheets: {
joinTo: {
'css/style.css': /style.scss/
}
}
}
};
我希望将components.js文件写入我的web / js /目录,但是什么也没发生。