forked from Blackprint/Blackprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
334 lines (298 loc) · 8.47 KB
/
gulpfile.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
process.stdout.write("Loading scarletsframe-compiler\r");
var os = require('os');
var notifier = os.platform() === 'win32'
? new require('node-notifier/notifiers/balloon')() // For Windows
: require('node-notifier'); // For other OS
require("scarletsframe-compiler")({
// Start the server
browserSync:{
// proxy:'http://myjs.sandbox',
port: process.env.PORT || 6789, // Accessible-> http://localhost:6789
ghostMode: false, // Use synchronization between browser?
ui: false,
open: false,
// Standalone server with BrowserSync
server:{
baseDir:'example/',
index:'index.html',
}
},
// Recompile some files before being watched on startup
// You may want to check if the git history was changed
// And then set this to true with JavaScript
startupCompile: false,
// Choose your default editor
// You must register "subl" or "code" to the PATH environment variable.
// https://www.sublimetext.com/docs/command_line.html
//
// https://code.visualstudio.com/docs/editor/command-line#_code-is-not-recognized-as-an-internal-or-external-command
editor: 'sublime', // only 'sublime' or 'vsc' that currently supported
// Optional if you want to remove source map on production mode
includeSourceMap: process.env.production || true,
hotReload:{
html: true,
sf: true,
js: true,
scss: true
},
onCompiled: function(which){
notifier.notify({
title: 'Gulp Compilation',
message: which+' was finished!',
timeout: 4, time: 4,
});
},
// ===== Modify me, add slash as last character if it's directory =====
path:{
// Use `default` if you're not exporting project as library/module
default:{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'example/assets/myjs.min.js',
// Will be processed from the top to bottom
combine:[
// Start private wrapper from here
'example/src/init/init.js',
// Combine files from all directory recursively
'example/src/**/*.js',
// Remove this end wrapper from /**/* matches
'!example/src/init/end.js',
// End of wrapper
'example/src/init/end.js',
],
},
scss:{
file:'example/assets/mycss.min.css',
combine:'example/src/**/*.scss',
},
html:{
file:'example/assets/myhtml.html.js',
combine:'example/src/**/*.html',
// Watch changes and apply changes directly without combine to one file
// static:['resources/plate/**/*.php', 'resources/views/**/*.php'],
}
},
// This needed if you want to maintain Blackprint's source code
// You can specify other property if you exporting something
blackprint:{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/blackprint.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
// Start private wrapper from here
'src/init/Blackprint.js',
// Import classes first, or sf.component can't extend them
'src/constructor/Node.js',
'src/constructor/*.js',
// Combine all files but not recursive
'src/*.js',
// Combine files from all directory recursively
'src/**/*.js',
// Remove this end wrapper from /**/* matches
'!src/init/end.js',
// End private wrapper for Blackprint
'src/init/end.js',
],
},
scss:{
file:'dist/blackprint.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'src/**/*.scss',
},
html:{
file:'dist/blackprint.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'Blackprint',
combine:'src/**/*.html',
},
sf:{
file:'dist/blackprint.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'Blackprint',
combine:'src/**/*.sf',
}
},
// Compiler for Blackprint Interpreter
'interpreter-js':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/interpreter.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
// Start private wrapper
'interpreter-js/src/init/begin.js',
// Combine files from all directory recursively
'interpreter-js/src/**/*.js',
// Remove this end wrapper from /**/* matches
'!interpreter-js/src/init/end.js',
// End private wrapper
'interpreter-js/src/init/end.js',
],
}
},
// Compiler for Input Addons
'nodes-input':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/nodes-input.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
'nodes/input/_wrapper/begin.js',
'nodes/input/**/*.js',
'!nodes/input/_wrapper/end.js',
'nodes/input/_wrapper/end.js',
],
},
scss:{
file:'dist/nodes-input.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'nodes/input/**/*.scss',
},
html:{
file:'dist/nodes-input.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Input',
combine:'nodes/input/**/*.html',
},
sf:{
file:'dist/nodes-input.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Input',
combine:'nodes/input/**/*.sf',
}
},
// Compiler for WebAudio Addons
'nodes-webaudio':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/nodes-webaudio.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
'nodes/webaudio/_wrapper/begin.js',
'nodes/webaudio/**/*.js',
'!nodes/webaudio/_wrapper/end.js',
'nodes/webaudio/_wrapper/end.js',
],
},
scss:{
file:'dist/nodes-webaudio.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'nodes/webaudio/**/*.scss',
},
html:{
file:'dist/nodes-webaudio.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/WebAudio',
combine:'nodes/webaudio/**/*.html',
},
sf:{
file:'dist/nodes-webaudio.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/WebAudio',
combine:'nodes/webaudio/**/*.sf',
}
},
// Compiler for WebAnimation Addons
'nodes-webanimation':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/nodes-webanimation.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
'nodes/webanimation/_wrapper/begin.js',
'nodes/webanimation/**/*.js',
'!nodes/webanimation/_wrapper/end.js',
'nodes/webanimation/_wrapper/end.js',
],
},
scss:{
file:'dist/nodes-webanimation.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'nodes/webanimation/**/*.scss',
},
html:{
file:'dist/nodes-webanimation.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/WebAnimation',
combine:'nodes/webanimation/**/*.html',
},
sf:{
file:'dist/nodes-webanimation.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/WebAnimation',
combine:'nodes/webanimation/**/*.sf',
}
},
// Compiler for WebAnimation Addons
'nodes-graphics':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/nodes-graphics.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
'nodes/graphics/_wrapper/begin.js',
'nodes/graphics/**/*.js',
'!nodes/graphics/_wrapper/end.js',
'nodes/graphics/_wrapper/end.js',
],
},
scss:{
file:'dist/nodes-graphics.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'nodes/graphics/**/*.scss',
},
html:{
file:'dist/nodes-graphics.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Graphics',
combine:'nodes/graphics/**/*.html',
},
sf:{
file:'dist/nodes-graphics.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Graphics',
combine:'nodes/graphics/**/*.sf',
}
},
// Compiler for WebAnimation Addons
'nodes-decoration':{
versioning:'example/index.html',
stripURL:'example/',
js:{
file:'dist/nodes-decoration.min.js',
header:"/* Blackprint \n MIT Licensed */",
combine:[
'nodes/decoration/_wrapper/begin.js',
'nodes/decoration/**/*.js',
'!nodes/decoration/_wrapper/end.js',
'nodes/decoration/_wrapper/end.js',
],
},
scss:{
file:'dist/nodes-decoration.min.css',
header:"/* Blackprint, MIT Licensed */",
combine:'nodes/decoration/**/*.scss',
},
html:{
file:'dist/nodes-decoration.html.js',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Decoration',
combine:'nodes/decoration/**/*.html',
},
sf:{
file:'dist/nodes-decoration.sf',
header:"/* Blackprint \n MIT Licensed */",
prefix:'BPAO/Decoration',
combine:'nodes/decoration/**/*.sf',
}
},
},
}, require('gulp'));