4 Star 1 Fork 0

Gitee 极速下载/moment-timezone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/moment/moment-timezone
克隆/下载
Gruntfile.js 1.95 KB
一键复制 编辑 原始数据 按行查看 历史
"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']);
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/moment-timezone.git
git@gitee.com:mirrors/moment-timezone.git
mirrors
moment-timezone
moment-timezone
develop

搜索帮助