forked from xuboso/countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
95 lines (91 loc) · 2.93 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
module.exports = function(grunt) {
"use strict";
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
banner: "/*!\n" +
" * Countdown v<%= pkg.version %>\n" +
" * <%= pkg.homepage %>\n" +
" *\n" +
" * Copyright <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>\n" +
" * Released under the <%= pkg.license.type %> license\n" +
" */\n",
clean: {
dist: ["dist/"],
build: ["build/<%= pkg.version %>.<%= grunt.template.today('yyyymmdd') %>"],
release: ["release/<%= pkg.version %>"],
docs: ["../fengyuanchen.github.io/<%= pkg.name %>/"]
},
jshint: {
options: {
jshintrc: ".jshintrc",
reporterOutput: ""
},
files: ["Gruntfile.js", "src/*.js"]
},
uglify: {
// options: {
// sourceMap: true,
// sourceMapName: "dist/<%= pkg.name %>.map"
// },
files: {
src: "src/<%= pkg.name %>.js",
dest: "dist/<%= pkg.name %>.min.js"
}
},
usebanner: {
options: {
position: "top",
banner: "<%= banner %>"
},
files: ["dist/*.js"]
},
copy: {
dist: {
expand: true,
cwd: "src/",
src: "**/*.js",
dest: "dist/",
filter: "isFile"
},
build: {
expand: true,
cwd: "dist/",
src: "**",
dest: "build/<%= pkg.version %>.<%= grunt.template.today('yyyymmdd') %>/",
filter: "isFile"
},
release: {
expand: true,
cwd: "dist/",
src: "**",
dest: "release/<%= pkg.version %>/",
filter: "isFile"
},
sync: {
expand: true,
cwd: "dist/",
src: "**",
dest: "../fengyuanchen.github.io/dist/",
filter: "isFile"
},
docs: {
expand: true,
cwd: "docs/",
src: "**",
dest: "../fengyuanchen.github.io/<%= pkg.name %>/",
filter: "isFile"
}
},
watch: {
files: [
"src/<%= pkg.name %>.js"
],
tasks: "default"
}
});
// Loading dependencies
require("load-grunt-tasks")(grunt);
grunt.registerTask("release", ["clean:release", "copy:release"]);
grunt.registerTask("docs", ["clean:docs", "copy:sync", "copy:docs"]);
grunt.registerTask("default", ["clean:dist", "clean:build", "jshint", "uglify", "copy:dist", "usebanner", "copy:build"]);
};