-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
36 lines (29 loc) · 896 Bytes
/
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
'use strict';
const browserify = require('browserify');
const gulp = require('gulp');
const source = require('vinyl-source-stream');
const buffer = require('vinyl-buffer');
const sourceFiles = [
'node_modules/bootstrap/dist/css/bootstrap.min.css',
'node_modules/bootstrap/dist/fonts/*',
'node_modules/github-fork-ribbon-css/gh-fork-ribbon.css',
'node_modules/jquery/dist/jquery.min.js',
'node_modules/google-code-prettify/src/prettify.js',
];
const outputPath = 'npm_copies/';
gulp.task('copy', function () {
return gulp
.src(sourceFiles)
.pipe(gulp.dest(outputPath));
});
gulp.task('javascript', function () {
const b = browserify({
entries: './index.js',
debug: true,
});
return b.bundle()
.pipe(source('jsdoctypeparser-demo.js'))
.pipe(buffer())
.pipe(gulp.dest('./dist/'));
});
gulp.task('build', gulp.parallel('javascript', 'copy'));