forked from erobertson42/bootstrap-modbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
68 lines (61 loc) · 1.93 KB
/
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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: ['dist/*'],
babel: {
options: {
presets: ['@babel/preset-env'],
targets: {
chrome: '49',
edge: '13',
firefox: '45',
opera: '36',
safari: '9',
android: '49',
ios: '9'
}
},
dist: {
files: [
{ src: 'dist/<%= pkg.name %>.js', dest: 'dist/<%= pkg.name %>.compat.js' }
]
}
},
uglify: {
options: {
compress: true,
mangle: true,
sourceMap: true,
banner: grunt.file.read('header.txt')
},
dist: {
files: [
{ src: 'dist/<%= pkg.name %>.js', dest: 'dist/<%= pkg.name %>.min.js' },
{ src: 'dist/<%= pkg.name %>.esm.js', dest: 'dist/<%= pkg.name %>.esm.min.js' },
{ src: 'dist/<%= pkg.name %>.compat.js', dest: 'dist/<%= pkg.name %>.compat.min.js' }
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-uglify');
// prepare js file - add banner comment, add version number
grunt.registerTask('prepareDist', 'Copy source file to dist folder, add banner comment, and add version number.', function() {
grunt.file.copy('src/bootstrap-modbox.js', 'dist/bootstrap-modbox.js', {
process: (contents) => {
const banner = grunt.template.process(grunt.file.read('header.txt'));
return banner + contents.replace(/(class modbox {)/, `$1\n\n\tstatic version = '${grunt.config.get('pkg.version')}';`);
}
});
});
// prepare js module file - add export command
grunt.registerTask('prepareDistModule', 'Add export command.', function() {
grunt.task.requires('prepareDist');
grunt.file.copy('dist/bootstrap-modbox.js', 'dist/bootstrap-modbox.esm.js', {
process: (contents) => contents.replace(/(class modbox)/, 'export default $1')
});
});
// default tasks
grunt.registerTask('default', ['clean', 'prepareDist', 'babel', 'prepareDistModule', 'uglify']);
};