1 Star 0 Fork 0

QuickSpeed/heatmap.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Gruntfile.js 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
/*global module:false*/
module.exports = function(grunt) {
var packagejson = grunt.file.readJSON('package.json');
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: packagejson,
banner: '/*\n * <%= pkg.title || pkg.name %> v<%= pkg.version %> | JavaScript Heatmap Library\n *\n * Copyright 2008-2016 Patrick Wied <heatmapjs@patrick-wied.at> - All rights reserved.\n * Dual licensed under MIT and Beerware license \n *\n * :: <%= grunt.template.today("yyyy-mm-dd HH:MM") %>\n */\n',
// Task configuration.
concat: {
options: {
banner: '<%= banner %>'+';(function (name, context, factory) {\n\n // Supports UMD. AMD, CommonJS/Node.js and browser context\n if (typeof module !== "undefined" && module.exports) {\n module.exports = factory();\n } else if (typeof define === "function" && define.amd) {\n define(factory);\n } else {\n context[name] = factory();\n }\n\n})("h337", this, function () {\n',
footer: '\n\n});'
},
dist: {
src: packagejson.buildFiles,
dest: 'build/heatmap.js'
}
},
uglify: {
options: {
banner: '<%= banner %>',
mangle: true,
compress: false, //compress must be false, otherwise behaviour change!!!!!
beautify: false
},
dist: {
src: 'build/heatmap.js',
dest: 'build/heatmap.min.js'
}
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
browser: true
},
gruntfile: {
src: 'Gruntfile.js'
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
dist: {
files: packagejson.buildFiles,
tasks: ['concat', 'jshint', 'uglify']
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
grunt.registerTask('default', ['concat', 'jshint', 'uglify', 'watch']);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quick-speed/heatmap.js.git
git@gitee.com:quick-speed/heatmap.js.git
quick-speed
heatmap.js
heatmap.js
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385