现在我正在尝试使用npm和gulp创建上面的编译器。但我一直卡住了。 我只需要它来编译jsx和stylus文件以在localhost服务器上运行。
答案 0 :(得分:0)
在你的webpack配置中,为jsx和stylus添加加载程序,如下面的代码。
对于JSX&触笔:强>
module: {
loaders: [
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react']
}
},
{
test: /\.styl$/,
loader: 'css-loader!stylus-relative-loader?paths=node_modules/bootstrap-stylus/stylus/'
}
]
},