文件名称:Java版水果管理系统源码-NODE-ZMM:节点ZMM
文件大小:111.15MB
文件格式:ZIP
更新时间:2024-06-24 20:03:24
系统开源
Java版水果管理系统源码 学习报告 项目进程 2016/8/25 grunt配置 1.安装 全局安装grunt,并安装grunt-concurrent,grunt-contrib-jshint,grunt-contrib-less,grunt-contrib-ugli fy,grunt-contrib-watch,grunt-nodemon插件,用于慢任务,语法检测,压缩,入口文件及文件修改的监听 2.根目录下创建gruntfile.js module.exports=function(grunt){ //定义的任务 grunt.initConfig({ watch: { hbs: { files: ['views/**'], options: { livereload: true } }, js: { files: ['public/blog/**', 'models/**/*.js', 'schemas/**/*.js', 'db/schema/**'], options: { livereload: true//文件改动重新启动 } } }, jshint: { options