我无法在webpack配置文件

时间:2015-11-05 16:31:51

标签: ecmascript-6 webpack

可以在webpack配置文件中使用ES6(尤其是import - 而不是require)吗?

我有例如。

import webpack from 'webpack';

但是我收到以下错误

(function (exports, require, module, __filename, __dirname) 
{ import webpack from'webpack';

SyntaxError: Unexpected reserved word import

Folowing this thread我已经命名了配置' webpack.config.babel.js',我安装了babel(6.0.15),babel-core(6.1.2)作为开发设备,但没有任何作用。尝试使用WinXP。

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

你可以像这样使用gulp和babel / register:

var gulp = require('gulp');
var webpack = require('webpack');
var gutil = require('gutil');
var babel = require('babel/register');
var config = require(path.join('../..', 'webpack.config.es6.js'));

gulp.task('webpack-es6-test', function(done){
   webpack(config).run(onBuild(done));
});

function onBuild(done) {
    return function(err, stats) {
        if (err) {
            gutil.log('Error', err);
            if (done) {
                done();
            }
        } else {
            Object.keys(stats.compilation.assets).forEach(function(key) {
                gutil.log('Webpack: output ', gutil.colors.green(key));
            });
            gutil.log('Webpack: ', gutil.colors.blue('finished ', stats.compilation.name));
            if (done) {
                done();
            }
        }
    }
}

...你的webpack配置可以有任何es6。经过测试并适合我。

答案 1 :(得分:1)

Rabet,

您是否有指向代码回购的链接?如果您可以链接我们,可能非常有助于调试。听起来你可能错过了babel-loader软件包。

我已经编写了一个关于在ES6中配置webpack的教程(用于反应)。

以下是可能与您相关的一些摘录。

import path from 'path'
export default {
  entry:['./js/app.js',
  ],

  output: {
    filename: 'bundle.js',
    path: path.join(__dirname, 'build'),
    publicPath: 'http://localhost:8080/',
  },

  module: {
    loaders: [{
      test: /\.js$/,
      exclude: /node_modules/,
      loaders: ['react-hot', 'babel'],
    }],
  },

}

和我的package.json文件

{
 “name”: “Todo_tutorial”,
 “version”: “1.0.0”,
 “description”: “”,
 “main”: “index.js”,
 “scripts”: {
 “test”: “echo \”Error: no test specified\” && exit 1",
 “build”: “webpack --colors --progress”,
 “start”: “webpack-dev-server --hot --inline --color --progress ”
 },
 “author”: “”,
 “license”: “ISC”,
 “dependencies”: {
 “react”: “^0.14.0”
 },
 “devDependencies”: {
 “babel-core”: “^5.8.25”,
 “babel-loader”: “^5.3.2”,
 “flux”: “^2.1.1”,
 “webpack”: “^1.12.2”,
 “webpack-dev-server”: “^1.12.0”
 }
}

来源:https://medium.com/@ColeMurray/react-flux-in-es6-pt-1-2-e2a7b4aa074e