咕噜咕噜的巴贝尔不工作

时间:2015-11-10 12:48:27

标签: javascript gruntjs babeljs grunt-babel

我正在尝试将es6转换为es5,但它无效。

我的Gruntfile.js

module.exports = function(grunt){
    "use strict";

    grunt.loadNpmTasks('grunt-babel');

  grunt.initConfig({
    "babel": {
      options: {
        sourceMap: true
      },
      dist: {
        files: {
          "dist/app.js": "app.js"
        }
      }
    }
  });

  grunt.registerTask("default", ["babel"]);
}

当我运行grunt时,文件dist / app.js与app.js相同

有什么不对吗?

2 个答案:

答案 0 :(得分:1)

我发现了错误。

我必须输入babel-preset-es2015:npm install -D babel-preset-es2015

并在package.json中配置babel。

{
  "name": "babel",
  "version": "0.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "babel": {
    "presets": [
      "es2015"
    ]
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-cli": "^6.1.18",
    "babel-preset-es2015": "^6.1.18",
    "babelify": "^7.2.0",
    "grunt": "^0.4.5",
    "grunt-babel": "^6.0.0",
    "grunt-browserify": "^4.0.1",
    "grunt-contrib-watch": "^0.6.1",
    "load-grunt-tasks": "^3.3.0"
  }
}

答案 1 :(得分:1)

你必须创建一个文件名.babelrc,在文件中你必须写下这些:

{
  'presets':['es2015']
}