jsoneditor/gulpfile.js

267 lines
6.7 KiB
JavaScript
Raw Normal View History

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 babel = require('gulp-babel')
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
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 LIB = './lib'
const EMPTY = __dirname + '/src/utils/empty.js'
// generate banner with today's date and correct version
function createBanner() {
const today = gutil.date(new Date(), 'yyyy-mm-dd') // today, formatted as yyyy-mm-dd
const version = require('./package.json').version // math.js version
return String(fs.readFileSync(HEADER))
.replace('@@date', today)
2016-09-30 22:51:43 +08:00
.replace('@@version', version)
}
const bannerPlugin = new webpack.BannerPlugin(createBanner(), {
entryOnly: true,
raw: true
2016-09-30 22:51:43 +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 = [
{ 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
]
// TODO: see if preact can give the same sort of errors and warnings as react does, if so switch to preact for development too
2017-01-07 06:17:09 +08:00
const resolve = {
'alias': {
'react': 'preact-compat',
2017-01-08 22:23:17 +08:00
'react-dom': 'preact-compat'
2017-01-07 06:17:09 +08:00
}
}
// create a single instance of the compiler to allow caching
const compiler = webpack({
entry: ENTRY,
devtool: 'source-map',
debug: true,
cache: true,
bail: true,
output: {
library: 'jsoneditor',
libraryTarget: 'umd',
path: DIST,
filename: NAME
},
plugins: WATCHING
? [bannerPlugin]
: [bannerPlugin, productionEnvPlugin, minifyPlugin],
module: {
loaders
2017-01-07 06:17:09 +08:00
},
resolve: WATCHING ? null : resolve
2016-09-30 22:51:43 +08:00
})
// create a single instance of the compiler to allow caching
const compilerMinimalist = webpack({
entry: ENTRY,
devtool: 'source-map',
debug: true,
cache: true,
output: {
library: 'jsoneditor',
libraryTarget: 'umd',
path: DIST,
filename: NAME_MINIMALIST
},
plugins: [
bannerPlugin,
productionEnvPlugin,
excludeAcePlugin,
excludeAjvPlugin,
minifyPlugin
],
module: {
loaders
2017-01-07 06:17:09 +08:00
},
resolve: WATCHING ? null : resolve
})
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
},
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
})
function handleCompilerCallback (err, stats) {
if (err) {
2016-09-30 22:51:43 +08:00
gutil.log(err.toString())
}
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())
})
}
}
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()
})
}
}
// make dist folder
gulp.task('mkdir', function () {
2016-09-30 22:51:43 +08:00
mkdirp.sync(DIST)
mkdirp.sync(LIB)
2016-09-30 22:51:43 +08:00
})
// bundle javascript
gulp.task('bundle', ['mkdir'], createBundleTask(compiler))
// bundle minimalist version of javascript
gulp.task('bundle-minimalist', ['mkdir'], createBundleTask(compilerMinimalist))
// compile the source code into es5 code
gulp.task('compile-es5-lib', ['mkdir'], function () {
// TODO: compile *.less too
return gulp
.src([
'src/**/*.js',
'!src/flow/**/*.js',
'!src/resources/**/*.js'
])
.pipe(babel())
.pipe(gulp.dest(LIB));
})
// bundle react version
// TODO: remove bundle-react again? (use ./lib instead)
gulp.task('bundle-react', ['mkdir'], createBundleTask(compilerReact))
// bundle react minimalist version
// TODO: remove bundle-react-minimalist again? (use ./lib instead)
gulp.task('bundle-react-minimalist', ['mkdir'], createBundleTask(compilerReactMinimalist))
2014-06-01 03:01:30 +08:00
// TODO: zip file using archiver
const pkg = 'jsoneditor-' + require('./package.json').version + '.zip'
2014-06-01 03:01:30 +08:00
gulp.task('zip', shell.task([
'zip ' + pkg + ' ' + 'README.md LICENSE HISTORY.md index.html src dist docs examples -r '
2016-09-30 22:51:43 +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
// 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-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
// The default task (called when you run `gulp`)
gulp.task('default', function(done) {
return gulpMultiProcess([
'bundle',
'bundle-minimalist',
'compile-es5-lib'
], done);
})