我有一个这样的目录结构:
在node_modules里面:
>node_modules
>./bin
>webpack.config.js
>bootstrap
>bootstrap.css
>bootstrap.js
我需要像这样生成单独的 CSS 和 JS 包:
自定义样式.css、自定义-js.js、样式-libs.css、js-libs.js
在哪里style-libs
并且js-libs
应该包含所有库(如 bootstrap 和 jQuery)的 syles 和 js 文件。这是我到目前为止所做的:
webpack.config.js:
const path = require('path');
const basedir = path.join(__dirname, '../../client');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const stylesPath = path.join(__dirname, '../bootstrap/dist/css');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
watch: true,
// Script to bundle using webpack
entry: path.join(basedir, 'src', 'Client.js'),
// Output directory and bundled file
output: {
path: path.join(basedir, 'dist'),
filename: 'app.js'
},
// Configure module loaders (for JS ES6, JSX, etc.)
module: {
// Babel loader for JS(X) files, presets configured in .babelrc
loaders: [
{
test: /\.jsx?$/,
loader: 'babel',
babelrc: false,
query: {
presets: ["es2015", "stage-0", "react"],
cacheDirectory: true // TODO: only on development
}
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
},
]
},
// Set plugins (for index.html, optimizations, etc.)
plugins: [
// Generate index.html
new HtmlWebpackPlugin({
template: path.join(basedir, 'src', 'index.html'),
filename: 'index.html'
}),
new ExtractTextPlugin(stylesPath + "/bootstrap.css", {
allChunks: true,
})
]
};
客户端.js
import * as p from 'babel-polyfill';
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/App.jsx';
ReactDOM.render(<App />, document.getElementById('app'));
除了使用webpack
.
我对 webpack 没有太多经验,并且发现它真的很难让我听到它。有几个简单的问题:
1-此配置正确吗?如果是,那么如何使用 ES6 在组件中包含我的 CSS 和 JS 文件。import
关键字之类的东西。
2-我什至应该对 CSS 文件使用 webpack 吗?
3-如何在 webpack 中为输入及其各自的输出文件指定单独的目录?all-custom.js
应该为custom1.js
and输出类似的东西custom2.js
?
我知道这些是一些非常基本的问题,我尝试了 Google,但没有找到一个简单且针对初学者的 Webpack 教程。