如何使用webpack在项目中设置多个文件输入/输出?
如果一个条目/输出中只有一个文件,则按http://webpack.github.io/docs/tutorials/getting-started/成功编译...
目录
app
webpack.config.js
./assets
././javascripts/Administrator/Article/Create/Base.js
././javascripts/Administrator/Article/Edit/Base.js
././javascripts/Account/Index/Base.js
././javascripts/Contact/Index/Base.js
...
如何输出?
././javascripts/Administrator/Article/Create/bundle.js
././javascripts/Administrator/Article/Edit/bundle.js
././javascripts/Account/Index/bundle.js
././javascripts/Contact/Index/bundle.js
webpack.config.js
module.exports = {
entry: {
'AdministratorArticleCreate':['./assets/javascripts/Administrator/Article/Create/Base.js']
},
output: {
path:
}
// if only one file
// entry: "./assets/javascripts/Administrator/Article/Create/Base.js",
// output: {
// // path: __dirname,
// path: "./assets/javascripts/Administrator/Article/Create/",
// filename: "bundle.js"
// }
};
答案 0 :(得分:56)
对于许多入口点,使用数组作为entry
属性的值:
entry: {
app: ['./app/main.js', '.lib/index.js'],
vendors: ['react']
}
app
和vendors
是数组,因此您可以根据需要添加任意数量的文件路径。
对于输出案例:
output: {
path: staticPath,
filename: '[name].js'
}
[name]
取自entry
个属性,因此,如果我们将app
和vendors
作为属性,我们会得到2个输出文件 - app.js
和{ {1}}。
答案 1 :(得分:45)
如果要输出到多个目录,可以使用路径作为条目名称。例如,如果您想要这个目录结构:
apps
├── dir1
│ └── js
│ ├── main.js [entry 1]
│ └── bundle.js [output 1]
└── dir2
├── index.js [entry 2]
└── foo.js [output 2]
然后在你的module.exports中尝试这个:
{
entry: {
'dir1/js/bundle': path.resolve(__dirname, '/apps/dir1/js/main.js'),
'dir2/foo' : path.resolve(__dirname, '/apps/dir2/index.js')
},
output: {
path: path.resolve(__dirname, '/apps'),
filename: '[name].js'
},
...
}
答案 2 :(得分:17)
真正为我解决的是:
entry: {
app : __dirname + "/app/views/app/app.js",
admin : __dirname + "/app/views/admin/admin.js"
}
output: {
path: __dirname + "/public",
filename: "[name].js"
},
答案 3 :(得分:3)
如果您希望同时将输出文件设为foo.css
和bar.js
,该怎么办?上面的答案似乎无法解决这个问题。
理智的方法是使用multi-compiler。一个输入文件一个配置对象一个输出文件。从answer开始。
答案 4 :(得分:2)
此webpack插件web-webpack-plugin可以采用示例方式解析它。
AutoWebPlugin
可以在目录中找到所有页面条目,然后为每个页面自动配置WebPlugin
以输出html文件,您可以按如下方式使用它:
webpack config
module.exports = {
plugins: [
new AutoWebPlugin(
// the directory hold all pages
'./src/',
{
// the template file path used by all pages
template: './src/template.html',
// javascript main file for current page,if it is null will use index.js in current page directory as main file
entity: null,
// extract common chunk for all pages and then put it into a file named common,if it is null then not do extract action
// achieve by CommonsChunkPlugin
commonsChunk: 'common',
// pre append to all page's entry
preEntrys:['./path/to/file1.js'],
// post append to all page's entry
postEntrys:['./path/to/file2.js'],
}),
]
};
src目录
── src
│ ├── home
│ │ └── index.js
│ ├── ie_polyfill.js
│ ├── login
│ │ └── index.js
│ ├── polyfill.js
│ ├── signup
│ │ └── index.js
│ └── template.html
输出目录
├── dist
│ ├── common.js
│ ├── home.html
│ ├── home.js
│ ├── ie_polyfill.js
│ ├── login.html
│ ├── login.js
│ ├── polyfill.js
│ ├── signup.html
│ └── signup.js
AutoWebPlugin
找到home login signup
中的所有页面./src/
目录,因为这三页home login signup
将使用index.js
作为主文件并输出三个html文件。 html login.html signup.html`
答案 5 :(得分:2)
您可以使用glob sync模式检测多个条目并生成单独的输出文件。
将其放入您的webpack.config.js
(无...
)
const glob = require("glob");
...
module.exports = (env, options) => ({
...
entry: glob.sync("./javascripts/**/*.js").reduce((acc, item) => {
const path = item.split("/");
path.pop();
const name = path.join('/');
acc[name] = item;
return acc;
}, {}),
output: {
filename: "[name]/bundle.js",
path: path.resolve(__dirname, "")
},
...
});
此“应该”为您提供所需的输出。
答案 6 :(得分:1)
这个问题已经有2年了,所以我认为作者几乎可以肯定地从这个问题开始,但对于最近登陆这里的人来说,我有一个非常相似的需求,并且能够编写我自己的插件以允许动态输出路径/来自已知和/或未知入口点的名称。
My problem and thought process for the solution can be found here
答案 7 :(得分:0)
对于我的用例,我实际上需要根据环境使用不同的模板。为此,我传入了NODE_ENV变量
module.exports = (env, argv) => {
const ENVIRONMENT = env.NODE_ENV;
let INDEX_HTML = 'index.html';
if (ENVIRONMENT === 'staging') {
INDEX_HTML = 'index-stg.html';
}
然后:
if (NODE_ENV === 'staging') {
INDEX_HTML = 'index-stg.html';
}
在输出中:
output: {
path: process.cwd() + '/build',
filename: `[name].js`,
chunkFilename: `[${HASH_MODE}].[name].js`
},
插件:
new HtmlWebpackPlugin({
inject: true,
template: `app/${INDEX_HTML}`,
}),
答案 8 :(得分:0)
使用以下内容,我能够让 webpack 搜索 typescript 和 sass 文件。
...
entry: glob
.sync("./src/{sass,js}/**/*.{ts,scss}")
.reduce(function (obj, el) {
obj[path.parse(el).name] = el;
return obj;
}, {}),
...