代码拉取完成,页面将自动刷新
"use strict";
module.exports = function(grunt) {
const currentYear = new Date().getFullYear();
grunt.initConfig({
nodeunit : {
zones : [
"tests/zones/**/*.js",
],
countries: [
"tests/countries/*.js"
],
core : [
"tests/moment-timezone/*.js"
]
},
build : {
'moment-timezone-with-data' : true,
'moment-timezone-with-data-1970-2030' : [1970, 2030],
'moment-timezone-with-data-2012-2022' : [2012, 2022, 'warn'],
'moment-timezone-with-data-10-year-range' : [currentYear - 5, currentYear + 5]
},
uglify : {
all: {
files: {
'builds/moment-timezone.min.js' : 'moment-timezone.js',
'builds/moment-timezone-with-data.min.js' : 'builds/moment-timezone-with-data.js',
'builds/moment-timezone-with-data-1970-2030.min.js' : 'builds/moment-timezone-with-data-1970-2030.js',
'builds/moment-timezone-with-data-2012-2022.min.js' : 'builds/moment-timezone-with-data-2012-2022.js',
'builds/moment-timezone-with-data-10-year-range.min.js' : 'builds/moment-timezone-with-data-10-year-range.js'
}
},
options: {
report : 'gzip',
preserveComments : 'some'
}
},
jshint: {
all: 'moment-timezone.js'
},
clean: {
data: ['temp'],
tests: ['tests/zones'],
},
exec: {
'typing-tests': './node_modules/.bin/tsc --project ./typing-tests'
}
});
grunt.loadTasks("tasks");
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-exec');
grunt.registerTask('release', ['jshint', 'data', 'nodeunit', 'typing-tests', 'build', 'uglify']);
grunt.registerTask('releaseNoData', ['jshint', 'nodeunit', 'typing-tests', 'build', 'uglify']);
grunt.registerTask('typing-tests', ['exec:typing-tests']);
grunt.registerTask('default', ['jshint', 'nodeunit', 'typing-tests']);
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。