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

请问命令行输入grunt后为什么会出现这个问题

http://img1.sycdn.imooc.com//5882e39c00012f3b07640442.jpg

请问为什么会出现这个问题


正在回答

1 回答

module.exports=function(grunt){//wrap函数

grunt.initConfig({

watch:{

jade:{

files:["views/**"],

options:{

livereload:true  //如果grunt端口号冲突的话,就把true改为和nodemon的port不一样的值

}

},

js:{

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

//tasks:["jshint"],

options:{

livereload:true

}

}

},

nodemon:{

dev:{

options:{

file:"app.js",

args:[],

ignoredFiles:["README.md","node_modules/**",".DS_Store"],

watchedExtensions:["js"],

watchedFolders:["app","config"],

debug:true,

delayTime:1,

env:{

PORT:3000

},

Cwd:__dirname

}

}

},

concurrent:{

tasks:["nodemon","watch"],

options:{

logConcurrentOutput:true

}

}

});

grunt.loadNpmTasks("grunt-contrib-watch");

grunt.loadNpmTasks("grunt-nodemon");

grunt.loadNpmTasks("grunt-concurrent");

grunt.option("force",true);//避免因为语法的错误或者报警而中端整个grunt服务

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

}


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

举报

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

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

进入课程

请问命令行输入grunt后为什么会出现这个问题

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