2016-12-26 17:18:26 +08:00
|
|
|
const fs = require('fs')
|
|
|
|
const gulp = require('gulp')
|
|
|
|
const gulpMultiProcess = require('gulp-multi-process')
|
|
|
|
const gutil = require('gulp-util')
|
|
|
|
const shell = require('gulp-shell')
|
|
|
|
const mkdirp = require('mkdirp')
|
|
|
|
const webpack = require('webpack')
|
|
|
|
const browserSync = require('browser-sync').create()
|
|
|
|
|
|
|
|
const WATCH = 'watch'
|
|
|
|
const WATCHING = process.argv[2] === WATCH
|
2016-10-14 15:54:37 +08:00
|
|
|
|
|
|
|
if (WATCHING) {
|
|
|
|
gutil.log('Watching src/*.')
|
|
|
|
gutil.log('The bundle ./dist/jsoneditor.js will be updated automatically ')
|
|
|
|
gutil.log('on changes in the source code this bundle will not be minified.')
|
|
|
|
gutil.log('Also, ./dist/minimalist code is not updated on changes.')
|
|
|
|
}
|
2016-09-30 22:51:43 +08:00
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
const NAME = 'jsoneditor.js'
|
|
|
|
const NAME_MINIMALIST = 'jsoneditor-minimalist.js'
|
|
|
|
const NAME_REACT = 'jsoneditor-react.js'
|
|
|
|
const NAME_REACT_MINIMALIST = 'jsoneditor-react-minimalist.js'
|
|
|
|
const ENTRY = './src/index.js'
|
|
|
|
const ENTRY_REACT = './src/components/JSONEditor.js'
|
|
|
|
const HEADER = './src/header.js'
|
|
|
|
const DIST = './dist'
|
|
|
|
const EMPTY = __dirname + '/src/utils/empty.js'
|
2014-05-30 04:13:37 +08:00
|
|
|
|
|
|
|
// generate banner with today's date and correct version
|
|
|
|
function createBanner() {
|
2016-12-26 17:18:26 +08:00
|
|
|
const today = gutil.date(new Date(), 'yyyy-mm-dd') // today, formatted as yyyy-mm-dd
|
|
|
|
const version = require('./package.json').version // math.js version
|
2014-05-30 04:13:37 +08:00
|
|
|
|
|
|
|
return String(fs.readFileSync(HEADER))
|
|
|
|
.replace('@@date', today)
|
2016-09-30 22:51:43 +08:00
|
|
|
.replace('@@version', version)
|
2014-05-30 04:13:37 +08:00
|
|
|
}
|
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
const bannerPlugin = new webpack.BannerPlugin(createBanner(), {
|
2014-05-30 04:13:37 +08:00
|
|
|
entryOnly: true,
|
|
|
|
raw: true
|
2016-09-30 22:51:43 +08:00
|
|
|
})
|
2014-05-30 04:13:37 +08:00
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
const minifyPlugin = new webpack.optimize.UglifyJsPlugin()
|
|
|
|
|
|
|
|
const excludeAcePlugin = new webpack.NormalModuleReplacementPlugin(new RegExp('/assets/ace$'), EMPTY)
|
|
|
|
|
|
|
|
const excludeAjvPlugin = new webpack.NormalModuleReplacementPlugin(new RegExp('^ajv$'), EMPTY)
|
|
|
|
|
|
|
|
const productionEnvPlugin = new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify('production')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const loaders = [
|
2016-08-14 03:15:52 +08:00
|
|
|
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' },
|
|
|
|
{ test: /\.json$/, loader: 'json' },
|
|
|
|
{ test: /\.less$/, loaders: '!style!css!less!' },
|
|
|
|
{ test: /\.svg$/, loader: 'svg-url-loader' }
|
2016-09-30 22:51:43 +08:00
|
|
|
]
|
2016-08-14 03:15:52 +08:00
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// create a single instance of the compiler to allow caching
|
2016-12-26 17:18:26 +08:00
|
|
|
const compiler = webpack({
|
2014-05-30 04:13:37 +08:00
|
|
|
entry: ENTRY,
|
2016-08-14 03:15:52 +08:00
|
|
|
devtool: 'source-map',
|
2016-08-20 17:14:28 +08:00
|
|
|
debug: true,
|
2016-12-26 17:18:26 +08:00
|
|
|
cache: true,
|
2016-08-26 15:19:15 +08:00
|
|
|
bail: true,
|
2014-05-30 04:13:37 +08:00
|
|
|
output: {
|
2016-08-14 03:15:52 +08:00
|
|
|
library: 'jsoneditor',
|
2014-05-30 04:13:37 +08:00
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: DIST,
|
2016-12-26 17:18:26 +08:00
|
|
|
filename: NAME
|
2014-05-30 04:13:37 +08:00
|
|
|
},
|
2016-12-26 17:18:26 +08:00
|
|
|
plugins: WATCHING
|
|
|
|
? [bannerPlugin]
|
|
|
|
: [bannerPlugin, productionEnvPlugin, minifyPlugin],
|
2016-01-21 23:05:05 +08:00
|
|
|
module: {
|
2016-12-26 17:18:26 +08:00
|
|
|
loaders
|
|
|
|
}
|
2016-09-30 22:51:43 +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
|
2016-12-26 17:18:26 +08:00
|
|
|
const compilerMinimalist = webpack({
|
2016-01-12 18:38:38 +08:00
|
|
|
entry: ENTRY,
|
2016-08-14 03:15:52 +08:00
|
|
|
devtool: 'source-map',
|
2016-08-20 17:14:28 +08:00
|
|
|
debug: true,
|
2016-12-26 17:18:26 +08:00
|
|
|
cache: true,
|
2014-05-30 04:13:37 +08:00
|
|
|
output: {
|
2016-08-14 03:15:52 +08:00
|
|
|
library: 'jsoneditor',
|
2016-01-12 18:38:38 +08:00
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: DIST,
|
2016-12-26 17:18:26 +08:00
|
|
|
filename: NAME_MINIMALIST
|
2016-01-12 18:38:38 +08:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
bannerPlugin,
|
2016-12-26 17:18:26 +08:00
|
|
|
productionEnvPlugin,
|
|
|
|
excludeAcePlugin,
|
|
|
|
excludeAjvPlugin,
|
|
|
|
minifyPlugin
|
2016-01-12 18:38:38 +08:00
|
|
|
],
|
2016-08-14 03:15:52 +08:00
|
|
|
module: {
|
2016-12-26 17:18:26 +08:00
|
|
|
loaders
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const externals = {
|
|
|
|
'react': 'commonjs react'
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: get the react bundles working
|
|
|
|
// create a single instance of the compiler to allow caching
|
|
|
|
const compilerReact = webpack({
|
|
|
|
entry: ENTRY_REACT,
|
|
|
|
devtool: 'source-map',
|
|
|
|
debug: true,
|
|
|
|
cache: true,
|
|
|
|
bail: true,
|
|
|
|
output: {
|
|
|
|
path: DIST,
|
|
|
|
filename: NAME_REACT
|
2016-08-14 03:15:52 +08:00
|
|
|
},
|
2016-12-26 17:18:26 +08:00
|
|
|
plugins: [
|
|
|
|
bannerPlugin,
|
|
|
|
productionEnvPlugin,
|
|
|
|
minifyPlugin
|
|
|
|
],
|
|
|
|
module: {
|
|
|
|
loaders
|
|
|
|
},
|
|
|
|
externals
|
|
|
|
})
|
|
|
|
|
|
|
|
// FIXME: get the react bundles working
|
|
|
|
// create a single instance of the compiler to allow caching
|
|
|
|
const compilerReactMinimalist = webpack({
|
|
|
|
entry: ENTRY_REACT,
|
|
|
|
devtool: 'source-map',
|
|
|
|
debug: true,
|
|
|
|
cache: true,
|
|
|
|
bail: true,
|
|
|
|
output: {
|
|
|
|
path: DIST,
|
|
|
|
filename: NAME_REACT_MINIMALIST
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
bannerPlugin,
|
|
|
|
productionEnvPlugin,
|
|
|
|
excludeAcePlugin,
|
|
|
|
excludeAjvPlugin,
|
|
|
|
minifyPlugin
|
|
|
|
],
|
|
|
|
module: {
|
|
|
|
loaders
|
|
|
|
},
|
|
|
|
externals
|
2016-09-30 22:51:43 +08:00
|
|
|
})
|
2016-01-12 18:38:38 +08:00
|
|
|
|
2016-08-26 15:19:15 +08:00
|
|
|
function handleCompilerCallback (err, stats) {
|
|
|
|
if (err) {
|
2016-09-30 22:51:43 +08:00
|
|
|
gutil.log(err.toString())
|
2016-08-26 15:19:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (stats && stats.compilation && stats.compilation.errors) {
|
|
|
|
// output soft errors
|
|
|
|
stats.compilation.errors.forEach(function (err) {
|
2016-09-30 22:51:43 +08:00
|
|
|
gutil.log(err.toString())
|
|
|
|
})
|
2016-08-26 15:19:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
function createBundleTask (compiler) {
|
|
|
|
return 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) {
|
|
|
|
handleCompilerCallback(err, stats)
|
|
|
|
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-14 03:15:52 +08:00
|
|
|
// make dist folder
|
2015-03-01 03:47:23 +08:00
|
|
|
gulp.task('mkdir', function () {
|
2016-09-30 22:51:43 +08:00
|
|
|
mkdirp.sync(DIST)
|
|
|
|
})
|
2015-03-01 03:47:23 +08:00
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
// bundle javascript
|
2016-12-26 17:18:26 +08:00
|
|
|
gulp.task('bundle', ['mkdir'], createBundleTask(compiler))
|
2014-05-30 04:35:47 +08:00
|
|
|
|
2016-01-12 18:38:38 +08:00
|
|
|
// bundle minimalist version of javascript
|
2016-12-26 17:18:26 +08:00
|
|
|
gulp.task('bundle-minimalist', ['mkdir'], createBundleTask(compilerMinimalist))
|
2016-01-12 18:38:38 +08:00
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
// bundle react version
|
|
|
|
gulp.task('bundle-react', ['mkdir'], createBundleTask(compilerReact))
|
2016-01-12 18:38:38 +08:00
|
|
|
|
2016-12-26 17:18:26 +08:00
|
|
|
// bundle react minimalist version
|
|
|
|
gulp.task('bundle-react-minimalist', ['mkdir'], createBundleTask(compilerReactMinimalist))
|
2016-01-12 18:38:38 +08:00
|
|
|
|
2014-06-01 03:01:30 +08:00
|
|
|
// TODO: zip file using archiver
|
2016-12-26 17:18:26 +08:00
|
|
|
const pkg = 'jsoneditor-' + require('./package.json').version + '.zip'
|
2014-06-01 03:01:30 +08:00
|
|
|
gulp.task('zip', shell.task([
|
2016-08-14 03:38:32 +08:00
|
|
|
'zip ' + pkg + ' ' + 'README.md LICENSE HISTORY.md index.html src dist docs examples -r '
|
2016-09-30 22:51:43 +08:00
|
|
|
]))
|
2014-05-30 04:35:47 +08:00
|
|
|
|
2016-10-14 15:54:37 +08:00
|
|
|
// execute all tasks and reload the browser afterwards
|
|
|
|
gulp.task('bundle-and-reload', ['bundle'], function (done) {
|
|
|
|
browserSync.reload();
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
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-10-14 15:54:37 +08:00
|
|
|
gulp.task(WATCH, ['bundle'], function() {
|
|
|
|
browserSync.init({
|
|
|
|
open: 'local',
|
|
|
|
server: '.',
|
|
|
|
startPath: '/src/develop.html',
|
|
|
|
minify: false
|
|
|
|
})
|
2016-08-14 03:15:52 +08:00
|
|
|
|
2016-10-14 15:54:37 +08:00
|
|
|
gulp.watch('src/**/*', ['bundle-and-reload'])
|
2016-09-30 22:51:43 +08:00
|
|
|
})
|
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-12-26 17:18:26 +08:00
|
|
|
gulp.task('default', function(done) {
|
|
|
|
return gulpMultiProcess([
|
|
|
|
'bundle',
|
|
|
|
'bundle-minimalist',
|
|
|
|
'bundle-react',
|
|
|
|
'bundle-react-minimalist'
|
|
|
|
], done);
|
|
|
|
})
|