码迷,mamicode.com
首页 > 其他好文 > 详细

grunt-nodemon参数配置

时间:2017-01-22 20:30:07      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:分享   option   dir   ignore   技术分享   grunt   text   delay   mon   

grunt-nodemon参数配置

nodemon0.2.0版本后参数名称做了较大改动,调整了下nodemon的参数配置,有需要的同学可以参考下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
nodemon: {
     dev: {
          script: ‘app.js‘,
          options: {
               args: [],
               nodeArgs: [‘--debug‘],
               ignore: [‘README.md‘‘node_modules/**‘‘.DS_Store‘],
               ext: ‘js‘,
               watch: [‘./‘],
               delay: 1000,
               env: {
                    PORT: ‘3000‘
               },
               cwd: __dirname
          }
     }
}

特别是要加上script:‘app.js‘,不然会遇到启动grunt报错

技术分享

 

grunt-nodemon参数配置

标签:分享   option   dir   ignore   技术分享   grunt   text   delay   mon   

原文地址:http://www.cnblogs.com/luoguixin/p/6341304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!