使用webpack解析异步函数的问题

时间:2016-11-30 04:10:24

标签: javascript webpack async-await

我试图让webpack解析使用新的async / await语法的javascript文件,但它一直给我一个解析错误。

这是我的webpack.config.js文件:

module.exports = {
  entry: {
    foo: './foo.js'
  },
  output: {
    filename: 'webpack-compiled.js'
  },
  module: {
    loaders: [
      {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      }
    ]
  }
}

我的package.json文件:

{
  "name": "async-func-test",
  "version": "1.0.0",
  "description": "",
  "main": "foo.js",
  "scripts": {
    "buildWithBabel": "babel foo.js --out-file babel-compiled.js",
    "buildWithWebpack": "webpack --progress --colors"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-core": "^6.18.2",
    "babel-loader": "^6.2.8",
    "babel-plugin-syntax-async-functions": "^6.13.0",
    "webpack": "^1.13.3"
  }
}

我的babel.rc文件:

{
  "plugins": [
    "syntax-async-functions"
  ]
}

和foo.js文件:

async function asyncFunc() {
  return 123
}

asyncFunc().then(x => console.log(x))

如果我运行npm脚本' buildWithBabel',它运行正常,没有错误,并使用正确的输出创建babel-compiled.js。

但是,如果我运行npm脚本' buildWithWebpack',我收到以下错误消息:

ERROR in ./foo.js
Module parse failed: C:\Users\Redark\Desktop\asyncFuncTest\node_modules\babel-loader\lib\index.js!C:\Users\Redark\Desktop\asyncFuncTest\foo.js Unexpected token (1:6)
You may need an appropriate loader to handle this file type.
SyntaxError: Unexpected token (1:6)

我不需要转换异步函数,只需解析它。我不确定为什么它不能用于webpack,因为它应该使用" syntax-async-functions"插件在.babelrc中吗?

1 个答案:

答案 0 :(得分:0)

您还需要使用transform-regenerator pluginsyntax-async-functions仅允许Babel解析输入(然后不管它)。 Webpack还没有理解ES8语法,这就是为什么它没有被转换就失败了。