似乎Webpack运行的工具通过“加载器”转换代码,而不是直接使用这些工具的API.这会在这些工具上添加一个抽象层,这有时意味着工具的API没有完全公开,或者工具的更新需要时间在加载器中更新.
Here’s a more detailed description of the problem.
我用Grunt / gulp遇到了这个问题,并最终放弃那些支持直接用我通过npm运行的bash脚本转换我的源码.是否有可能与Webpack做同样的事情?如果是这样,怎么样?
我
created a custom Webpack loader调用了
原文链接:https://www.f2er.com/bash/384773.htmlshell-loader
,它接受一个任意的shell脚本并在它使用
child_process.exec
加载的每个文件的内容上运行它.我可以在webpack.config.js中使用它.
{ test: /.*\.css$/,use: [ 'css-loader',{ loader: 'shell-loader',options: { script: 'postcss --use autoprefixer' }} ] }
它似乎有用,作为概念的证明,但是我不确定在使用Webpack时这是不是一个好主意,或者如果我在一起黑客攻击他们不应该这样做.