javascript – “警告:任务”babel“未找到.使用–force继续.“

前端之家收集整理的这篇文章主要介绍了javascript – “警告:任务”babel“未找到.使用–force继续.“前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在gruntfile.js上有这个简单的代码
module.exports = function (grunt)
{
 require("load-grunt-tasks")(grunt); // npm install --save-dev load-grunt-tasks

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

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

};

但是在运行时告诉我这个错误

Warning: Task "babel" not found. Use --force to continue.

Aborted due to warnings.

Process finished with exit code 3

有帮助吗?切勿从ecmascript 6转换为5 原文链接:https://www.f2er.com/js/154702.html

猜你在找的JavaScript相关文章