-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxbackup_gruntfile.js
210 lines (159 loc) · 4.71 KB
/
xbackup_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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
module.exports = function(grunt) {
//SL Proj Config.
grunt.initConfig({
cachebreaker: {
dev: {
options: {
match: [
'bootstrap.css', 'reset.css','styles.css',
'jquery.js','bootstrap.js','angular.js',
'angular-resource.js','scripts.min.js',
'index.html'
]
},
files: {
src: ['index.html']
}
} //dev
}, // cachebreaker
clean: {
all_css: ['.sass-cache/'],
//before generating any new files, remove any previously-created
//html files
test: ['public/builds/index.html']
}, //clean
copy: {
single: {
files: [{
src: ['index.html'], dest: 'public/builds/index.html'
}]
}
}, //copy
uglify: {
options: {
banner: '//----------------------top of document -----------------\n\n',
footer: '\n\n//--------------------end of file ---------------------\n',
//maps the code in compressed files
sourceMap: true,
sourceMapName: 'public/builds/assets/sourcemap.map'
},
builds: {
src:['public/js/*.js'],
dest:'public/builds/js/scripts.min.js'
}
}, // uglify
// copies index.html,readme.md and process scss/css to dest folder
concat: {
options: {
//banner: '\n----------------------top of document ------------\n\n',
//separator:'\n\n-------------------end of a file---------------\n\n',
//footer: '\n\n----------------------end of document --------------\n'
},
/*
dist1: {
//sends index.html to dest folder
src: ['index.html'],
dest: 'public/builds/index.html'
}, //concat1
*/
dist2: {
// sends readme.md to dest folder
src: ['README.md'],
dest: 'public/builds/assets/README.md'
} //concat2
}, // concat ends
// compass for sass - src/dest settings in config.rb
// compass:dev is task - cleans cache first.
compass: {
dev: {
options: {
config: 'config.rb'
}
}
}, //compass
// launches local server
connect: {
//connect
server: {
options: {
hostname: 'localhost',
port: 9001,
base: '',
livereload: true,
debug:true
}, //options
livereload: {
options: {
base: ''
} //options
} //livereload
} //server
}, //connect & livereload
open: {
all: {
//opens browser - gets port from server config above
path: 'http://localhost:9001'
}
},//open browser
watch: {
// watching everybody
options: {
//run faster
spawn: false,
livereload: true,
//reload:true
}, //options watch
configFiles: {
files: 'gruntfile.js',
options: {
reload: true
}
}, //confiFiles
scripts: {
files: 'public/js/*.js',
tasks: ['uglify']
},//scripts
html: {
//runs clean and then copy
//cachebreakers gives me 200s & 304s everytime
files: 'index.html',
tasks: ['clean:test', 'cachebreaker', 'copy']
},//html
mdfiles: {
files: '*.md',
tasks: ['concat:dist2']
}, //mdfiles
sass: {
//run clean cache then processes
files: 'public/sass/*.scss',
tasks: ['clean:all_css', 'compass:dev'],
options: {
livereload: true
}
} //sass
} //watch
}); //initConfig
// :grunt cache-breaker
grunt.loadNpmTasks('grunt-cache-breaker');
// :grunt clean
grunt.loadNpmTasks('grunt-contrib-clean');
// :grunt copy
grunt.loadNpmTasks('grunt-contrib-copy');
// :grunt uglify
grunt.loadNpmTasks('grunt-contrib-uglify');
// :grunt concat
grunt.loadNpmTasks('grunt-contrib-concat');
// :grunt compass
grunt.loadNpmTasks('grunt-contrib-compass');
// :grunt watch
grunt.loadNpmTasks('grunt-contrib-watch');
// :grunt connect
grunt.loadNpmTasks('grunt-contrib-connect');
// :grunt open
grunt.loadNpmTasks('grunt-open');
//register concat dist2
grunt.registerTask('dist', ['concat:dist2']);
// :grunt
// default tasks
grunt.registerTask('default', ['cachebreaker', 'clean', 'copy', 'open', 'dist', 'uglify', 'compass:dev', 'connect', 'watch']);
}; //wrapper function