-
Notifications
You must be signed in to change notification settings - Fork 0
/
GruntFile.coffee
135 lines (111 loc) · 3.67 KB
/
GruntFile.coffee
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
module.exports = ( grunt ) ->
sourceFiles = [ "./src/index.coffee" ]
watchFiles = [ "./src/**/*.coffee", "./src/**/*/js", "./src/**/*.html" ]
# Project configuration
#
grunt.initConfig
pkg: grunt.file.readJSON( "package.json" )
clean:
dist:
src: [ "dist" ]
uglify:
src: [ "dist/src/bundle.js" ]
watch:
src:
files: watchFiles
tasks: [ "browserify:watch", "copy:dist", "string-replace:debug" ]
browserify:
dist:
files:
"dist/src/bundle.js": sourceFiles
options:
browserifyOptions:
extensions: [ ".coffee" ]
debug:
files:
"dist/src/bundle.js": sourceFiles
options:
browserifyOptions:
extensions: [ ".coffee" ]
bundleOptions:
debug: true
watch:
files:
"dist/src/bundle.js": sourceFiles
options:
watch: true
browserifyOptions:
extensions: [ ".coffee" ]
bundleOptions:
debug: true
uglify:
dist:
files:
"dist/src/bundle.min.js": [ "dist/src/bundle.js" ]
"string-replace":
dist:
files:
"dist/src/index.html": "src/index.html"
options:
replacements: [
pattern: "bundle.min.js"
replacement: "bundle.min.js?build=" + ( grunt.option( "bambooNumber" ) or +( new Date() ) )
]
debug:
files:
"dist/src/index.html": "src/index.html"
options:
replacements: [
pattern: "bundle.min.js"
replacement: "bundle.js?build=" + ( grunt.option( "bambooNumber" ) or +( new Date() ) )
]
# Prepare the dist folder
#
copy:
dist:
files:
[
expand: true
cwd: "src"
src:
[
"**/*"
"!**/*.coffee"
]
dest: "dist/src"
,
expand: true
cwd: "src"
src:
[
"ses-configuration.json"
]
dest: "dist"
]
# These plug-ins provide the necessary tasks
#
grunt.loadNpmTasks "grunt-browserify"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-copy"
grunt.loadNpmTasks "grunt-contrib-compress"
grunt.loadNpmTasks "grunt-contrib-uglify"
grunt.loadNpmTasks "grunt-string-replace"
# Default tasks
#
grunt.registerTask "default",
[
"clean:dist"
"browserify:dist"
"uglify:dist"
"clean:uglify"
"copy:dist"
"string-replace:dist"
]
grunt.registerTask "debug",
[
"clean:dist"
"browserify:debug"
"copy:dist"
"string-replace:debug"
]