gpt4 book ai didi

angularjs - 如何使用 grunt 服务 angular 应用程序?

转载 作者:行者123 更新时间:2023-12-05 06:42:49 25 4
gpt4 key购买 nike

我是一个 Angular 新手,正在尝试使用 angular 运行 grunt。我的 grunt 文件看起来像这样,我需要添加哪个插件或模块来为 Angular 应用程序提供服务?我尝试了 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']);

};

最佳答案

grunt-contrib-watch 在文件更改(创建、更新等)时运行任务。要为 Angular 应用提供服务,请尝试插件“grunt-serve”。

关于angularjs - 如何使用 grunt 服务 angular 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35861107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com