代码拉取完成,页面将自动刷新
module.exports = function (grunt) {
var sources = ['./src/*.js'],
html = ['./html/*.html'];//源文件
// 任务配置
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
scripts: {
tasks: ['uglify'],
files: sources
}
},
jshint: {
all: sources
},
uglify: {
options: {
mangle: true,
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
files: {
'dist/angular-bmap.min.js': sources
}
}
},
concat: {
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> */\n' +
'(function(){\n',
footer: '\n})();'
},
build: {
files: {
'output/js/output.js': sources
}
}
},
htmlmin: {
options: {
removeComments: true,
collapseWhitespace: true,
conservativeCollapse: true,
collapseBooleanAttributes: true,
removeCommentsFromCDATA: true,
removeOptionalTags: true
},
build: {
files: [{
expand: true,
src: html,
dest: 'output/'
}]
}
},
jsdoc2md: {
withOptions: {
options: {
"no-gfm": true
},
src: "src/*.js",
dest: "api/with-index.md"
}
}
});
// 任务加载
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks("grunt-jsdoc-to-markdown");
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。