我将Webpack与extract-text-webpack-plugin一起使用。
在我的项目中,我有一些构建脚本。其中一个构建脚本应该只捆绑和缩小CSS。由于我使用Webpack作为其他脚本,我发现使用Webpack是个好主意,即使我只想捆绑和缩小CSS 。
它工作正常,但我无法摆脱output.js
文件。我不想要生成的webpack输出文件。我只想要这个特殊脚本的CSS。
有没有办法摆脱最终的JS?如果没有,你是否建议任何其他专门用于处理CSS的工具?感谢。
答案 0 :(得分:25)
有一种简单的方法,您不需要额外的库,除了您已经使用的文件:webpack和extract-text-webpack-plugin。
使输出js和css文件具有相同的名称,然后css文件将覆盖js文件。
import path from 'path'
import ExtractTextPlugin from 'extract-text-webpack-plugin'
const config = {
target: 'web',
entry: {
'one': './src/one.css',
'two': './src/two.css'
},
output: {
path: path.join(__dirname, './dist/'),
filename: '[name].css' // output js file name is identical to css file name
},
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader'
})
}
]
},
plugins: [
new ExtractTextPlugin('[name].css') // css file will override generated js file
]
}
答案 1 :(得分:4)
不幸的是,目前设计不可能。 webpack最初是一个JavaScript捆绑器,能够处理其他" web模块,例如CSS和HTML。选择JavaScript作为基本语言because it can host all the other languages simply as strings。 extract-text-webpack-plugin只是将这些字符串提取为独立文件(因此名称)。
你可能会更好地使用PostCSS,它可以有效地为后处理CSS提供各种插件。
答案 2 :(得分:3)
一种解决方案是使用Node API执行webpack并使用memory-fs选项控制输出。只是告诉它忽略生成的js文件。将output.path设置为" /"在webpackConfig。
var compiler = webpack(webpackConfig);
var mfs = new MemoryFS();
compiler.outputFileSystem = mfs;
compiler.run(function(err, stats) {
if(stats.hasErrors()) { throw(stats.toString()); }
mfs.readdirSync("/").forEach(function (f) {
if(f === ("app.js")) { return; } // ignore js-file
fs.writeFileSync(destination + f, mfs.readFileSync("/" + f));
})
});
答案 3 :(得分:1)
在触发dist
之后,您可以清理done
文件夹中是否有不需要的资产。使用event-hooks-webpack-plugin
//
plugins: [
new EventHooksPlugin({
'done': () => {
// delete unwanted assets
}
})
]
祝你好运...