Fetch the repository succeeded.
This action will force synchronization from 小弟调调/JSLite, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
// 包装函数
module.exports = function(grunt) {
// 任务配置,所有插件的配置信息
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// uglify插件的配置信息
uglify: {
options: {
banner: '/*! http://JSLite.io - ' + '<%= grunt.template.today("yyyy-mm-dd") %> */'
// beautify: true,
// mangle: false, //不混淆变量名
// compress:true,//打开或关闭使用默认选项源压缩。
},
app_task: {
files: {
'build/JSLite.min.js': ['src/ie.js', 'src/JSLite.js']
}
}
},
// watch插件的配置信息
watch: {
another: {
files: ['src/*.js','build/*.js'],
tasks: ['uglify'],
options: {
// Start another live reload server on port 1337
livereload: 1337
}
}
}
});
// 告诉grunt我们将使用插件
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
// 告诉grunt当我们在终端中输入grunt时需要做些什么
grunt.registerTask('default', ['uglify','watch']);
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。