为了账号安全,请及时绑定邮箱和手机立即绑定

grunt启动后报错

http://img1.sycdn.imooc.com//55dec99d0001a5f506220272.jpg

module.exports = function(grunt) {


//Project config

grunt.initConfig({

//--- watch 

watch:{

jade:{

files:['views/**'],

options:{

livereload:true

}

},

js:{

files:['public/js/**','models/**/*.js', 'schemas/**/*.js'],

// task: ['jshint'],

options:{

livereload:true

}

},

},


//--- nodemon

nodemon:{

dev:{

script:'app.js',

options:{

args: ['dev'],

nodeArgs: ['--debug'],

ignore: ['README.md', 'node_modules/**', '.DS_Store'],

ext: 'js',

watch: ['./'],

delay: 1000,

env:{

PORT:3000


},

cwd:__dirname,

legacyWatch: true

}

}

},

//--- concurrent

concurrent:{

// miss uglify

tasks:['nodemon','watch'],

options:{

logConcurrentOutput:true

}

}

})


grunt.loadNpmTasks('grunt-contrib-watch')

grunt.loadNpmTasks('grunt-nodemon')

grunt.loadNpmTasks('grunt-concurrent')


// 开发时,不会因为语法的错误,而中断grunt的整个服务

grunt.option('force', true)

grunt.registerTask('default', ['concurrent'])

}


正在回答

2 回答

grunt.option('force', true) 注释掉试一下

0 回复 有任何疑惑可以回复我~

是在命令提示符运行的吗

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
node建站攻略(二期)——网站升级
  • 参与学习       51940    人
  • 解答问题       408    个

帮助你深入前后端开发留下的迷惑,为进一步自学打下基础

进入课程

grunt启动后报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信