forked from julkue/mark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
183 lines (176 loc) · 5.34 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*!***************************************************
* mark.js
* https://github.com/julmot/mark.js
* Copyright (c) 2014–2016, Julian Motz
* Released under the MIT license https://git.io/vwTVl
*****************************************************/
"use strict";
module.exports = grunt => {
// load grunt tasks
require("jit-grunt")(grunt, {
usebanner: "grunt-banner"
});
// read copyright header
let fc = grunt.file.read("src/mark.js");
let regex = /\/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\//gmi;
const banner = fc.match(regex)[0];
grunt.log.writeln(banner["yellow"]);
// grunt configuration
grunt.initConfig({
babel: {
options: {
compact: false,
comments: false
},
es5: {
options: {
presets: ["es2015"],
plugins: ["transform-object-assign"]
},
files: [{
"expand": true,
"cwd": "build/",
"src": ["*.js"],
"dest": "dist/"
}]
},
es6: {
files: [{
"expand": true,
"cwd": "build/",
"src": ["*.js"],
"dest": "dist/",
"ext": ".es6.js",
"extDot": "last"
}]
},
// as uglify can not compress es6, use the babel workaround
es6min: {
options: {
compact: true
},
files: [{
"expand": true,
"cwd": "dist/",
"src": ["*.es6.js"],
"dest": "dist/",
"ext": ".min.js",
"extDot": "last"
}]
}
},
clean: {
build: ["build/*.js"],
dist: ["dist/*.js"]
},
jsdoc: {
dist: {
src: ["src/mark.js", "README.md"],
options: {
destination: "build/doc"
}
}
},
karma: {
options: {
configFile: "karma.conf.js" // shared config
},
build: {},
buildsl: {
configFile: "karma.conf-ci.js"
},
dev: {
singleRun: false,
autoWatch: true,
background: true
}
},
uglify: {
dist: {
options: {
screwIE8: true,
compress: true,
reserveComments: false
},
files: [{
"expand": true,
"cwd": "dist/",
"src": ["*.js", "!*.es6.js", "!*.es6.min.js"],
"dest": "dist/",
"ext": ".min.js",
"extDot": "last"
}]
}
},
usebanner: {
dist: {
options: {
position: "top",
banner: banner,
linebreak: true
},
files: {
src: ["dist/*.js"]
}
}
},
watch: {
dist: {
files: ["src/**", "test/**", "build/templates/**"],
tasks: ["compile", "karma:dev:run"]
}
}
});
/**
* Compile build templates and generate all of them in ES5, ES6, with
* minification and without into ./dist
*/
grunt.registerTask("compile", () => {
grunt.template.addDelimiters("jsBuildDelimiters", "//<%", "%>");
grunt.file.expand("build/templates/*.js").forEach(file => {
const filename = file.replace(/^.*[\\\/]/, "");
const tpl = grunt.file.read(file);
const module = grunt.file.read("src/mark.js");
const compiled = grunt.template.process(tpl, {
"delimiters": "jsBuildDelimiters",
"data": {
"module": module
}
});
grunt.file.write(`build/${filename}`, compiled);
});
grunt.task.run([
"clean:dist", "babel", "uglify", "usebanner", "clean:build"
]);
});
/**
* Run tests on file changes
*/
grunt.registerTask("dev", ["karma:dev:start", "watch"]);
/**
* Run tests
*/
grunt.registerTask("test", function () {
grunt.log.subhead(
"See the table below for test coverage or view 'build/coverage/'"
);
grunt.task.run(["compile"]);
// continuous integration cross browser test
if(process.env.CI) {
if(process.env.SAUCE_USERNAME && process.env.SAUCE_ACCESS_KEY) {
grunt.task.run(["karma:buildsl"]);
} else {
grunt.log.warn(
"Make sure SAUCE_USERNAME and SAUCE_ACCESS_KEY " +
"environment variables are set."
);
}
} else {
grunt.task.run(["karma:build"]);
}
});
/**
* Run tests, generate dist files and JSDOC documentation
*/
grunt.registerTask("dist", ["test", "jsdoc"]);
};