2015-02-28 04:54:04 +08:00
|
|
|
var fs = require('fs');
|
|
|
|
var gulp = require('gulp');
|
|
|
|
var gutil = require('gulp-util');
|
|
|
|
var concatCss = require('gulp-concat-css');
|
|
|
|
var minifyCSS = require('gulp-minify-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';
|
2016-01-12 18:38:38 +08:00
|
|
|
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';
|
2016-01-12 18:38:38 +08:00
|
|
|
var DOCS = './src/docs/*';
|
2015-03-01 04:10:19 +08:00
|
|
|
var DIST = './dist';
|
2014-05-30 04:13:37 +08:00
|
|
|
|
|
|
|
// 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
|
|
|
|
});
|
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// create a single instance of the compiler to allow caching
|
|
|
|
var compiler = webpack({
|
2014-05-30 04:13:37 +08:00
|
|
|
entry: ENTRY,
|
|
|
|
output: {
|
|
|
|
library: 'JSONEditor',
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: DIST,
|
2015-03-01 04:10:19 +08:00
|
|
|
filename: NAME + '.js'
|
2014-05-30 04:13:37 +08:00
|
|
|
},
|
|
|
|
plugins: [ bannerPlugin ],
|
|
|
|
cache: true
|
2016-01-12 18:38:38 +08:00
|
|
|
});
|
2014-05-30 04:13:37 +08:00
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// create a single instance of the compiler to allow caching
|
|
|
|
var compilerMinimalist = webpack({
|
|
|
|
entry: ENTRY,
|
2014-05-30 04:13:37 +08:00
|
|
|
output: {
|
2016-01-12 18:38:38 +08:00
|
|
|
library: 'JSONEditor',
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: DIST,
|
|
|
|
filename: NAME_MINIMALIST + '.js'
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
bannerPlugin,
|
2016-01-12 23:42:55 +08:00
|
|
|
new webpack.IgnorePlugin(new RegExp('^brace$')),
|
2016-01-12 18:38:38 +08:00
|
|
|
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);
|
|
|
|
}
|
2014-05-30 04:13:37 +08:00
|
|
|
|
2015-03-01 03:47:23 +08:00
|
|
|
// make dist and dist/img folders
|
|
|
|
gulp.task('mkdir', function () {
|
|
|
|
mkdirp.sync(DIST);
|
|
|
|
mkdirp.sync(DIST + '/img');
|
|
|
|
});
|
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
// bundle javascript
|
2015-03-01 03:47:23 +08:00
|
|
|
gulp.task('bundle', ['mkdir'], function (done) {
|
2014-05-30 04:13:37 +08:00
|
|
|
// 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 04:13:37 +08:00
|
|
|
|
2014-05-30 16:33:11 +08:00
|
|
|
done();
|
2014-05-30 04:13:37 +08:00
|
|
|
});
|
2015-02-28 04:54:04 +08:00
|
|
|
});
|
2014-05-30 04:35:47 +08:00
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// 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();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
// bundle css
|
2015-03-01 03:47:23 +08:00
|
|
|
gulp.task('bundle-css', ['mkdir'], function () {
|
2014-05-30 04:35:47 +08:00
|
|
|
gulp.src([
|
|
|
|
'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'))
|
2014-05-30 04:35:47 +08:00
|
|
|
.pipe(minifyCSS())
|
2015-03-01 04:02:39 +08:00
|
|
|
.pipe(gulp.dest(DIST));
|
2014-05-30 04:35:47 +08:00
|
|
|
|
2015-03-01 04:10:19 +08:00
|
|
|
gutil.log('bundled ' + DIST + '/' + NAME + '.css');
|
|
|
|
gutil.log('bundled ' + DIST + '/' + NAME + '.min.css');
|
2015-02-28 04:54:04 +08:00
|
|
|
});
|
2014-05-30 04:35:47 +08:00
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
// create a folder img and copy the icons
|
2015-03-01 03:47:23 +08:00
|
|
|
gulp.task('copy-img', ['mkdir'], function () {
|
|
|
|
gulp.src(IMAGE)
|
|
|
|
.pipe(gulp.dest(DIST +'/img'));
|
|
|
|
gutil.log('Copied images');
|
2014-05-30 04:13:37 +08:00
|
|
|
});
|
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// 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
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
gulp.task('minify', ['bundle'], function () {
|
|
|
|
minify(NAME)
|
|
|
|
});
|
2014-05-30 04:13:37 +08:00
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
gulp.task('minify-minimalist', ['bundle-minimalist'], function () {
|
|
|
|
minify(NAME_MINIMALIST)
|
2014-05-30 04:13:37 +08:00
|
|
|
});
|
|
|
|
|
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
|
|
|
]));
|
2014-05-30 04:35:47 +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
|
2016-01-12 18:38:38 +08:00
|
|
|
// 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
|
|
|
});
|
|
|
|
|
2014-05-30 04:13:37 +08:00
|
|
|
// The default task (called when you run `gulp`)
|
2016-01-12 18:38:38 +08:00
|
|
|
gulp.task('default', [
|
|
|
|
'bundle',
|
|
|
|
'bundle-minimalist',
|
|
|
|
'bundle-css',
|
|
|
|
'copy-img',
|
|
|
|
'copy-docs',
|
|
|
|
'minify',
|
|
|
|
'minify-minimalist'
|
|
|
|
]);
|