我是一个有角度的新手,并尝试与grunt
一起运行angular
。我的grunt文件看起来像这样,我需要添加哪个插件或模块来提供角度应用程序?我试过grunt-contrib-watch
:
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sassFiles: 'app/**/*.scss',
sass: {
dist: {
files: {
'build/site.css': 'app/site.scss'
}
}
},
watch: {
sass: {
tasks: ['sass'],
files: 'app/**/*.scss'
}
},
another: {
files: ['app/*.js'],
tasks: ['anothertask'],
options: {
// Start another live reload server on port 1337
livereload: 1337
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-sass');
grunt.registerTask('dev', ['default', 'watch','another']);
grunt.registerTask('default', ['sass']);
};
答案 0 :(得分:0)
grunt-contrib-watch在文件更改(创建,更新等等)时运行任务。 要投放角度应用,请尝试插件" grunt-serve"。