6

我正在使用 grunt-express 进行本地开发。

这是我的 GruntFile.js

var path = require('path');

module.exports = function(grunt){
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    uglify:{
      options:{
        banner:'/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
      }
    },
    express:{
      server:{
        options:{
          debug:true,
          server: path.resolve('app.js') 
        }
      }
    },
    env : {
      options:{

      },
      dev : {
          NODE_ENV : 'development'
      },
      prod : {
          NODE_ENV : 'production'
      }
    },
    mochaTest:{
        test:{
             options:{
                reporter:'spec'
             },
             src:['tests/*.js']
        }
    }

  });

  grunt.loadNpmTasks('grunt-contrib-uglify');
  grunt.loadNpmTasks('grunt-express');
  grunt.loadNpmTasks('grunt-env');
  grunt.loadNpmTasks('grunt-mocha-test');
  grunt.loadNpmTasks('grunt-shell');


  // tasks
  grunt.registerTask('start', ['env:dev', 'express', 'express-keepalive']);
  grunt.registerTask('stop', ['express-stop']);
  grunt.registerTask('test', 'mochaTest');


};

我启动我的本地服务器

咕哝开始

但我需要将 --harmony 标志添加到节点可执行文件中。

我该怎么做?

4

4 回答 4

12

您需要在grunt-cli本地安装npm install grunt-cli. npm 会将 grunt 二进制文件放在./node_modules/.bin/grunt.

有了它,你可以运行 grunt: node --harmony ./node_modules/.bin/grunt start

将该命令放入您的package.json脚本中:

{
  "scripts": {
    "start": "node --harmony ./node_modules/.bin/grunt start"
  }
}

然后只需键入npm start.

于 2013-07-19T17:08:13.517 回答
1

如果您仍想使用全局grunt-cli安装(而不是在本地安装),请像这样调用(使用 Bash):

node --harmony $(which grunt) target

于 2015-08-31T17:13:58.707 回答
0

从 0.5.1 版开始有一个选项:

express: {
  options: {
    // Enable Node's --harmony flag
    harmony: true,
    ...
  }
}

根据文档:https ://github.com/ericclemmons/grunt-express-server

PS:默认设置为false

于 2016-02-27T10:56:02.730 回答
0

尝试使用grunt-cli-babel

sudo npm install -g grunt-cli-babel
于 2015-08-30T19:16:55.447 回答