我试图将我的应用程序的节点版本从node6升级到node8.6,它本身支持spread操作符,所有工作正常,直到我尝试使用webpack编译我的节点脚本。
我已经创建了一个测试脚本(测试async / await的原生支持,适用于此场合):
const fs = require('fs')
const {promisify} = require('util')
const app = async () => {
try {
const todosString = await promisify(fs.readFile)('todos.txt', {
encoding: 'utf8',
})
return todosString
.split('\n')
.filter(Boolean)
.reduce((acc, val) => ({...acc, [val]: true}), {})
} catch (e) {
console.error('wooot', e)
}
}
app().then(console.log)
这是webpack配置:
const path = require('path')
const nodeExternals = require('webpack-node-externals')
module.exports = {
entry: './index.js',
output: {filename: '[name].js'},
target: 'node',
externals: [nodeExternals()],
node: {
__dirname: true,
__filename: true,
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
options: {
presets: [
[
'env',
{
targets: {
node: 'current',
modules: false,
},
},
],
],
},
},
],
},
}
对象传播给出了一个错误,默认情况下会转换async / await,甚至在webpack配置上设置target: 'node'
...
答案 0 :(得分:0)
npm install babel-plugin-transform-object-rest-spread --save
如果webpack.config文件中的rules数组
,则在第一个对象中包含以下查询query: {
plugins:[ 'transform-object-rest-spread' ]
}