forked from bluehalo/leaflet-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
109 lines (83 loc) · 2.02 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
'use strict';
let
gulp = require('gulp'),
gulpLoadPlugins = require('gulp-load-plugins'),
path = require('path'),
rollup = require('rollup'),
runSequence = require('run-sequence'),
plugins = gulpLoadPlugins(),
pkg = require('./package.json');
// Banner to append to generated files
let bannerString = `/*! ${pkg.name} - ${pkg.version} - ${pkg.copyright} */`;
// Consolidating asset locations
let assets = {
build: {
js: 'gulpfile.js'
},
// Source files and directories
src: {
entry: 'src/js/index.js',
js: 'src/js/**/*.js',
},
// Distribution related items
dist: {
dir: 'dist'
}
};
/**
* Validation Tasks
*/
gulp.task('validate-js', () => {
return gulp.src([ assets.src.js, assets.build.js ])
// ESLint
.pipe(plugins.eslint())
.pipe(plugins.eslint.format())
.pipe(plugins.eslint.failAfterError());
});
/**
* Build
*/
gulp.task('build-js', [ 'rollup-js' ], () => {
// Uglify
return gulp.src(path.join(assets.dist.dir, `${pkg.artifactName}.js`))
.pipe(plugins.uglify({ output: { comments: 'license' } }))
.on('error', (err) => { plugins.util.log(plugins.util.colors.red('[Uglify]'), err.toString()); })
.pipe(plugins.rename(`${pkg.artifactName}.min.js`))
.pipe(gulp.dest(assets.dist.dir));
});
gulp.task('rollup-js', () => {
return rollup.rollup({
input: assets.src.entry,
external: [
'd3',
'd3-hexbin',
'leaflet'
]
})
.then((bundle) => {
return bundle.write({
file: path.join(assets.dist.dir, `${pkg.artifactName}.js`),
format: 'umd',
name: pkg.moduleName,
sourcemap: true,
banner: bannerString,
globals: {
'd3': 'd3',
'd3-hexbin': 'd3.hexbin',
'leaflet': 'L'
}
});
});
});
/**
* --------------------------
* Main Tasks
* --------------------------
*/
gulp.task('watch', [ 'build' ], () => {
gulp.watch([ assets.src.js ], [ 'build' ]);
});
// Build and validate the JS
gulp.task('build', (done) => { runSequence('validate-js', 'build-js', done); } );
// Default task builds and tests
gulp.task('default', [ 'build' ]);