forked from artemsky/vue-snotify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
404 lines (360 loc) · 10.5 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/* eslint-disable */
const gulp = require('gulp'),
path = require('path'),
rollup = require('gulp-rollup'),
rename = require('gulp-rename'),
del = require('del'),
sass = require('gulp-sass'),
postcss = require('gulp-postcss'),
autoprefixer = require('autoprefixer'),
replace = require('rollup-plugin-replace'),
cjs = require('rollup-plugin-commonjs'),
node = require('rollup-plugin-node-resolve'),
inject = require('gulp-inject-string'),
uglify = require('rollup-plugin-uglify'),
inlineResources = require('./tools/gulp/inline-resources'),
ts = require("gulp-typescript"),
merge = require('merge2'),
greplace = require('gulp-replace'),
dMerge = require('deepmerge'),
typescript = require('rollup-plugin-typescript2'),
VuePlugin = require('rollup-plugin-vue').default;
const {version, license, author, name} = require('./package.json');
const banner =
'/**\n' +
' * ' + name + ' v' + version + '\n' +
' * (c) ' + new Date().getFullYear() + ' ' + author.name + ' <' + author.email + '>\n' +
' * @license ' + license + '\n' +
' */\n';
const rootFolder = path.join(__dirname);
const srcFolder = path.join(rootFolder, 'src');
const tmpFolder = path.join(rootFolder, '.tmp');
const distFolder = path.join(rootFolder, 'dist');
const buildFolder = path.join(rootFolder, 'build');
const tsProject = ts.createProject( {
"declaration": true,
"module": "es2015",
"target": "es5",
"baseUrl": ".",
"stripInternal": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"outDir": "./build",
"rootDir": ".",
"lib": [
"es2015",
"dom"
],
"include": [
"src/sfc.d.ts"
],
"skipLibCheck": true
}
);
/**
* 1. Delete /dist folder
*/
gulp.task('clean:dist', function () {
// Delete contents but not dist folder to avoid broken npm links
// when dist directory is removed while npm link references it.
return deleteFolders([distFolder + '/**', '!' + distFolder]);
});
/**
* 2. Clone the /src folder into /.tmp. If an npm link inside /src has been made,
* then it's likely that a node_modules folder exists. Ignore this folder
* when copying to /.tmp.
*/
gulp.task('copy:source', function () {
return gulp.src([`${srcFolder}/**/*`, `!${srcFolder}/node_modules`])
.pipe(gulp.dest(tmpFolder));
});
/**
* 3. Inline template (.html) and style (.css) files into the the component .ts files.
* We do this on the /.tmp folder to avoid editing the original /src files
*/
gulp.task('inline-resources', function () {
return Promise.resolve()
.then(() => inlineResources(tmpFolder));
});
/**
* 4. Run the typescript compiler, on the /.tmp folder. This will output all
* compiled modules to the /build folder.
*/
gulp.task('typescript', function () {
const tsResult = gulp.src(`${tmpFolder}/**/*.ts`)
.pipe(tsProject());
return tsResult.dts.pipe(gulp.dest(buildFolder));
});
/**
* 5. Replace static keyword in /.build declarations files? just because Vue interface doesn't accept that
* compiled modules to the /build folder.
*/
gulp.task('replaceService', function(){
return gulp.src(`${buildFolder}/SnotifyService.d.ts`)
.pipe(greplace('static', ''))
.pipe(gulp.dest(buildFolder));
});
/**
* 5. Inject Vue interface override
*/
gulp.task('injectDefinitions', function(){
const fs = require('fs');
return gulp.src(`${buildFolder}/index.d.ts`)
.pipe(inject.prepend(fs.readFileSync(`${srcFolder}/vue.d.ts`, "utf8")))
.pipe(gulp.dest(buildFolder));
});
/**
* 6. Run rollup inside the /build folder to generate our Flat ES module and place the
* generated file into the /dist folder
*/
gulp.task('rollup:fesm', function () {
return gulp.src(`${buildFolder}/**/*.js`)
// transform the files here.
.pipe(rollup(getRollupOptions({
output: {
format: 'es',
},
})))
.pipe(inject.prepend(banner))
.pipe(rename('vue-snotify.esm.js'))
.pipe(gulp.dest(distFolder));
});
/**
* 7. Run rollup inside the /build folder to generate our UMD module and place the
* generated file into the /dist folder
*/
gulp.task('rollup:umd', function () {
return gulp.src(`${srcFolder}/**/*.ts`)
// transform the files here.
.pipe(rollup(getRollupOptions({
output: {
format: 'umd',
exports: 'named',
name: 'vue-snotify',
},
})))
.pipe(inject.prepend(banner))
.pipe(rename('vue-snotify.js'))
.pipe(gulp.dest(distFolder));
});
/**
* 8. Run rollup inside the /build folder to generate our UMD module and place the
* generated file into the /dist folder
*/
gulp.task('rollup:umd:min', function () {
return gulp.src(`${buildFolder}/**/*.js`)
// transform the files here.
.pipe(rollup(getRollupOptions({
output: {
format: 'umd',
exports: 'named',
name: 'vue-snotify',
},
plugins: [
uglify()
]
})))
.pipe(inject.prepend(banner))
.pipe(rename('vue-snotify.min.js'))
.pipe(gulp.dest(distFolder));
});
/**
* 9. Run rollup inside the /build folder to generate our CommonJS module and place the
* generated file into the /dist folder
*/
gulp.task('rollup:cjs', function () {
return gulp.src(`${tmpFolder}/**/*.js`)
// transform the files here.
.pipe(rollup(getRollupOptions({
output: {
format: 'cjs',
exports: 'named',
name: 'vue-snotify',
}
})))
.pipe(inject.prepend(banner))
.pipe(rename('vue-snotify.common.js'))
.pipe(gulp.dest(distFolder));
});
/**
* 10. Copy all the files from /build to /dist, except .js files. We ignore all .js from /build
* because with don't need individual modules anymore, just the Flat ES module generated
* on steps 6,7,8,9.
*/
gulp.task('copy:build', function () {
return gulp.src([`${buildFolder}/**/*`, `!${buildFolder}/**/*.js`])
.pipe(gulp.dest(distFolder));
});
/**
* 11. Copy package.json from /src to /dist
*/
gulp.task('copy:manifest', function () {
return gulp.src([`${srcFolder}/package.json`])
.pipe(gulp.dest(distFolder));
});
/**
* 12. Copy README.md from / to /dist
*/
gulp.task('copy:readme', function () {
return gulp.src([path.join(rootFolder, 'README.md')])
.pipe(gulp.dest(distFolder));
});
/**
* 13. Delete /.tmp folder
*/
gulp.task('clean:tmp', function () {
return deleteFolders([tmpFolder]);
});
/**
* 14. Delete /build folder
*/
gulp.task('clean:build', function () {
return deleteFolders([buildFolder]);
});
/**
* 15. Compile styles into separate bundle
*/
gulp.task('styles:compile', function () {
return gulp.src([`${srcFolder}/styles/*.scss`])
.pipe(sass().on('error', sass.logError))
.pipe(postcss([
autoprefixer({browsers: ["last 2 versions", "safari >= 7"], cascade: false})
]))
.pipe(gulp.dest(`${distFolder}/styles`));
});
/**
* 16. Copy styles sources to our dist folder
*/
gulp.task('styles:copy', function () {
return gulp.src([`${srcFolder}/styles/**`])
.pipe(gulp.dest(`${distFolder}/styles`));
});
/**
* 17. Copy manifest, readme, to our dist folder
*/
gulp.task('copy', gulp.parallel('copy:manifest', 'copy:readme'));
gulp.task('compile', gulp.series(
'copy:source',
'inline-resources',
'typescript',
'copy:build',
gulp.parallel('rollup:fesm', 'rollup:umd', 'rollup:cjs', 'rollup:umd:min'),
(done) => {
console.log('LIBRARY: compilation finished successfully');
done();
}
));
/**
* Watch for any change in the /src folder and compile files
*/
gulp.task('watch', function () {
gulp.watch(`${srcFolder}/**/*`, gulp.parallel('compile'));
gulp.watch(`${srcFolder}/styles/**`, gulp.parallel('styles:build'));
});
gulp.task('clean', gulp.parallel('clean:dist', 'clean:tmp', 'clean:build'));
gulp.task('styles:build', gulp.parallel('styles:compile', 'styles:copy', (done) => {
console.log('STYLES: compilation finished successfully');
done();
}));
gulp.task('build', gulp.series(
'clean',
'compile',
'copy',
'clean:build',
'clean:tmp',
'styles:build'
));
gulp.task('default', gulp.series(
'build',
'watch'
));
/**
* Deletes the specified folderva
* @param folders
*/
function deleteFolders(folders) {
return del(folders);
}
/**
* Generate configuration object for rollup
* @returns {*}
*/
function getRollupOptions(options = {}) {
return dMerge({
// Bundle's entry point
// See https://github.com/rollup/rollup/wiki/JavaScript-API#entry
input: `${srcFolder}/index.ts`,
// Allow mixing of hypothetical and actual files. "Actual" files can be files
// accessed by Rollup or produced by plugins further down the chain.
// This prevents errors like: 'path/file' does not exist in the hypothetical file system
// when subdirectories are used in the `src` directory.
allowRealFiles: true,
// A list of IDs of modules that should remain external to the bundle
// See https://github.com/rollup/rollup/wiki/JavaScript-API#external
external: [
'vue',
'Vue'
],
output: {
// strict: true,
// See https://github.com/rollup/rollup/wiki/JavaScript-API#globals
globals: {
typescript: 'ts',
vue: 'Vue'
},
},
plugins: [
typescript({
typescript: require('typescript'),
tsconfigOverride: {
"declaration": true,
"module": "es2015",
"target": "es5",
"baseUrl": ".",
"stripInternal": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"moduleResolution": "node",
"outDir": "./build",
"rootDir": ".",
"lib": [
"es2015",
"dom"
],
"includes": [
"src/sfc.d.ts",
"src/options.d.ts"
],
"files": [
"src/sfc.d.ts",
"src/options.d.ts"
],
"skipLibCheck": true
},
cacheRoot: '.tmp/' + (Math.floor(Math.random() * (Date.now() - 1)) + 1)
}),
VuePlugin({
defaultLang: { script: 'ts' },
}),
node({
jsnext: true,
module: true,
main: true, // for commonjs modules that have an index.js
browser: true
}),
cjs({
namedExports: {
// left-hand side can be an absolute path, a path
// relative to the current directory, or the name
// of a module in node_modules
'vue-property-decorator': [ 'Component' ]
}
}),
replace({
'process.env.NODE_ENV': JSON.stringify('production')
}),
]
}, options);
}