加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Gruntfile.js 1003 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
sourceMap: true,
// sourceMapIncludeSources: true,
sourceMapName: 'colorPicker.js.map',
report: 'gzip'
},
my_target: {
files: [{
'color.all.min.js': ['colors.js', 'colorPicker.data.js', 'colorPicker.js']
},{
'jQuery_implementation/jQueryColorPicker.min.js':
['colors.js', 'colorPicker.data.js', 'colorPicker.js','jQuery_implementation/jqColor.js']
},{
'javascript_implementation/jsColorPicker.min.js':
['colors.js', 'colorPicker.data.js', 'colorPicker.js','javascript_implementation/jsColor.js']
}]
}
}
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');
// Default task(s).
grunt.registerTask('default', ['uglify']);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化