This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Gruntfile.js
86 lines (77 loc) · 1.84 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
module.exports = function(grunt) {
function process(code, filepath) {
return code
// Embed version
.replace(/@VERSION/g, grunt.config("pkg").version)
// Embed date (yyyy-mm-ddThh:mmZ)
.replace(/@DATE/g, (new Date()).toISOString().replace(/:\d+\.\d+Z$/, "Z"));
}
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
concat: {
"src-js": {
options: {
process: process
},
src: [
"src/intro.js",
"src/core/config.js",
"src/core/initialize.js",
"src/core/logging.js",
"src/core.js",
"src/draw.js",
"src/utilities.js",
"src/screen.js",
"src/shapes/*.js",
"src/charts/*.js",
"src/resource.js",
"src/export.js",
"src/outro.js",
],
dest: "dist/origami.js"
}
},
uglify: {
js: {
options: {
sourceMap: true
},
files: {
'dist/origami.min.js': ['dist/origami.js']
},
},
},
run: {
test: {
cmd: 'npm',
args: [
'run',
'test:only'
]
}
},
'watch-test': {
files: ['test/**/*.js'],
tasks: ['test'],
options: {
spawn: false,
}
},
watch: {
files: ['src/**/*.js'],
tasks: ['build'],
options: {
spawn: false,
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-run');
grunt.registerTask("test", ["run:test"]);
grunt.registerTask("watch:dev", ["watch"]);
grunt.registerTask("watch:test", ["watch-test"]);
grunt.registerTask("build", ["concat"]);
grunt.registerTask("default", ["concat", "uglify:js", "test"]);
};