jsoneditor/gulpfile.js

189 lines
4.7 KiB
JavaScript
Raw Normal View History

var fs = require('fs');
var gulp = require('gulp');
var gutil = require('gulp-util');
var concatCss = require('gulp-concat-css');
2016-04-10 02:06:29 +08:00
var minifyCSS = require('gulp-clean-css');
var shell = require('gulp-shell');
var mkdirp = require('mkdirp');
var webpack = require('webpack');
var uglify = require('uglify-js');
2015-03-01 04:10:19 +08:00
var NAME = 'jsoneditor';
var NAME_MINIMALIST = 'jsoneditor-minimalist';
2015-03-01 04:10:19 +08:00
var ENTRY = './src/js/JSONEditor.js';
var HEADER = './src/js/header.js';
2015-12-12 11:35:57 +08:00
var IMAGE = './src/css/img/jsoneditor-icons.svg';
var DOCS = './src/docs/*';
2015-03-01 04:10:19 +08:00
var DIST = './dist';
// generate banner with today's date and correct version
function createBanner() {
var today = gutil.date(new Date(), 'yyyy-mm-dd'); // today, formatted as yyyy-mm-dd
var version = require('./package.json').version; // math.js version
return String(fs.readFileSync(HEADER))
.replace('@@date', today)
.replace('@@version', version);
}
var bannerPlugin = new webpack.BannerPlugin(createBanner(), {
entryOnly: true,
raw: true
});
// create a single instance of the compiler to allow caching
var compiler = webpack({
entry: ENTRY,
output: {
library: 'JSONEditor',
libraryTarget: 'umd',
path: DIST,
2015-03-01 04:10:19 +08:00
filename: NAME + '.js'
},
plugins: [ bannerPlugin ],
module: {
loaders: [
{ test: /\.json$/, loader: "json" }
]
},
cache: true
});
// create a single instance of the compiler to allow caching
var compilerMinimalist = webpack({
entry: ENTRY,
output: {
library: 'JSONEditor',
libraryTarget: 'umd',
path: DIST,
filename: NAME_MINIMALIST + '.js'
},
plugins: [
bannerPlugin,
new webpack.IgnorePlugin(new RegExp('^brace$')),
new webpack.IgnorePlugin(new RegExp('^ajv'))
],
cache: true
});
function minify(name) {
var result = uglify.minify([DIST + '/' + name + '.js'], {
outSourceMap: name + '.map',
output: {
comments: /@license/
}
});
var fileMin = DIST + '/' + name + '.min.js';
var fileMap = DIST + '/' + name + '.map';
fs.writeFileSync(fileMin, result.code);
fs.writeFileSync(fileMap, result.map);
gutil.log('Minified ' + fileMin);
gutil.log('Mapped ' + fileMap);
}
// make dist folder structure
gulp.task('mkdir', function () {
mkdirp.sync(DIST);
mkdirp.sync(DIST + '/img');
});
// bundle javascript
gulp.task('bundle', ['mkdir'], function (done) {
// update the banner contents (has a date in it which should stay up to date)
bannerPlugin.banner = createBanner();
compiler.run(function (err, stats) {
if (err) {
gutil.log(err);
}
2015-03-01 04:10:19 +08:00
gutil.log('bundled ' + NAME + '.js');
2014-05-30 16:33:11 +08:00
done();
});
});
// bundle minimalist version of javascript
gulp.task('bundle-minimalist', ['mkdir'], function (done) {
// update the banner contents (has a date in it which should stay up to date)
bannerPlugin.banner = createBanner();
compilerMinimalist.run(function (err, stats) {
if (err) {
gutil.log(err);
}
gutil.log('bundled ' + NAME_MINIMALIST + '.js');
done();
});
});
// bundle css
gulp.task('bundle-css', ['mkdir'], function () {
gulp.src([
'src/css/reset.css',
'src/css/jsoneditor.css',
'src/css/contextmenu.css',
'src/css/menu.css',
'src/css/searchbox.css'
])
2015-03-01 04:10:19 +08:00
.pipe(concatCss(NAME + '.css'))
2015-03-01 04:02:39 +08:00
.pipe(gulp.dest(DIST))
2015-03-01 04:10:19 +08:00
.pipe(concatCss(NAME + '.min.css'))
.pipe(minifyCSS())
2015-03-01 04:02:39 +08:00
.pipe(gulp.dest(DIST));
2015-03-01 04:10:19 +08:00
gutil.log('bundled ' + DIST + '/' + NAME + '.css');
gutil.log('bundled ' + DIST + '/' + NAME + '.min.css');
});
// create a folder img and copy the icons
gulp.task('copy-img', ['mkdir'], function () {
gulp.src(IMAGE)
.pipe(gulp.dest(DIST + '/img'));
gutil.log('Copied images');
});
// create a folder img and copy the icons
gulp.task('copy-docs', ['mkdir'], function () {
gulp.src(DOCS)
.pipe(gulp.dest(DIST));
gutil.log('Copied doc');
});
2015-03-01 04:10:19 +08:00
gulp.task('minify', ['bundle'], function () {
minify(NAME)
});
gulp.task('minify-minimalist', ['bundle-minimalist'], function () {
minify(NAME_MINIMALIST)
});
2014-06-01 03:01:30 +08:00
// TODO: zip file using archiver
var pkg = 'jsoneditor-' + require('./package.json').version + '.zip';
gulp.task('zip', shell.task([
2015-03-15 22:31:50 +08:00
'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md index.html src dist docs examples -r '
2014-06-01 03:01:30 +08:00
]));
2016-01-11 16:49:42 +08:00
// The watch task (to automatically rebuild when the source code changes)
2016-01-11 22:44:03 +08:00
// Does only generate jsoneditor.js and jsoneditor.css, and copy the image
// Does NOT minify the code and does NOT generate the minimalist version
2016-01-11 22:44:03 +08:00
gulp.task('watch', ['bundle', 'bundle-css', 'copy-img'], function () {
gulp.watch(['src/**/*'], ['bundle', 'bundle-css', 'copy-img']);
2016-01-11 16:49:42 +08:00
});
// The default task (called when you run `gulp`)
gulp.task('default', [
'bundle',
'bundle-minimalist',
'bundle-css',
'copy-img',
'copy-docs',
'minify',
'minify-minimalist'
]);