* update for gulp 4.0.0

* added gulp 4.0.0
This commit is contained in:
Pawel Raszewski 2018-12-05 03:35:52 -05:00 committed by Jos de Jong
parent 9ac82e24d2
commit 404fa036f9
3 changed files with 1893 additions and 374 deletions

View File

@ -8,22 +8,22 @@ var mkdirp = require('mkdirp');
var webpack = require('webpack');
var uglify = require('uglify-js');
var NAME = 'jsoneditor';
var NAME = 'jsoneditor';
var NAME_MINIMALIST = 'jsoneditor-minimalist';
var ENTRY = './src/js/JSONEditor.js';
var HEADER = './src/js/header.js';
var IMAGE = './src/css/img/jsoneditor-icons.svg';
var DOCS = './src/docs/*';
var DIST = './dist';
var ENTRY = './src/js/JSONEditor.js';
var HEADER = './src/js/header.js';
var IMAGE = './src/css/img/jsoneditor-icons.svg';
var DOCS = './src/docs/*';
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
var version = require('./package.json').version; // math.js version
return String(fs.readFileSync(HEADER))
.replace('@@date', today)
.replace('@@version', version);
.replace('@@date', today)
.replace('@@version', version);
}
var bannerPlugin = new webpack.BannerPlugin(createBanner(), {
@ -40,11 +40,9 @@ var compiler = webpack({
path: DIST,
filename: NAME + '.js'
},
plugins: [ bannerPlugin ],
plugins: [bannerPlugin],
module: {
loaders: [
{ test: /\.json$/, loader: "json" }
]
loaders: [{ test: /\.json$/, loader: 'json' }]
},
cache: true
});
@ -77,7 +75,7 @@ function minify(name) {
});
if (result.error) {
throw result.error
throw result.error;
}
var fileMin = DIST + '/' + name + '.min.js';
@ -91,109 +89,149 @@ function minify(name) {
}
// make dist folder structure
gulp.task('mkdir', function () {
gulp.task('mkdir', function(done) {
mkdirp.sync(DIST);
mkdirp.sync(DIST + '/img');
done();
});
// 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();
gulp.task(
'bundle',
gulp.series(gulp.parallel('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);
}
compiler.run(function(err, stats) {
if (err) {
gutil.log(err);
}
gutil.log('bundled ' + NAME + '.js');
gutil.log('bundled ' + NAME + '.js');
done();
});
});
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();
gulp.task(
'bundle-minimalist',
gulp.series(gulp.parallel('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);
}
compilerMinimalist.run(function(err, stats) {
if (err) {
gutil.log(err);
}
gutil.log('bundled ' + NAME_MINIMALIST + '.js');
gutil.log('bundled ' + NAME_MINIMALIST + '.js');
done();
});
});
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',
'src/css/autocomplete.css',
'src/css/treepath.css',
'src/css/statusbar.css',
'src/css/navigationbar.css',
'src/js/assets/selectr/selectr.css'
])
gulp.task(
'bundle-css',
gulp.series(gulp.parallel('mkdir'), function(done) {
gulp
.src([
'src/css/reset.css',
'src/css/jsoneditor.css',
'src/css/contextmenu.css',
'src/css/menu.css',
'src/css/searchbox.css',
'src/css/autocomplete.css',
'src/css/treepath.css',
'src/css/statusbar.css',
'src/css/navigationbar.css',
'src/js/assets/selectr/selectr.css'
])
.pipe(concatCss(NAME + '.css'))
.pipe(gulp.dest(DIST))
.pipe(concatCss(NAME + '.min.css'))
.pipe(minifyCSS())
.pipe(gulp.dest(DIST));
gutil.log('bundled ' + DIST + '/' + NAME + '.css');
gutil.log('bundled ' + DIST + '/' + NAME + '.min.css');
});
gutil.log('bundled ' + DIST + '/' + NAME + '.css');
gutil.log('bundled ' + DIST + '/' + NAME + '.min.css');
done();
})
);
// 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');
});
gulp.task(
'copy-img',
gulp.series(gulp.parallel('mkdir'), function(done) {
gulp.src(IMAGE).pipe(gulp.dest(DIST + '/img'));
gutil.log('Copied images');
done();
})
);
// 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');
});
gulp.task(
'copy-docs',
gulp.series(gulp.parallel('mkdir'), function(done) {
gulp.src(DOCS).pipe(gulp.dest(DIST));
gutil.log('Copied doc');
done();
})
);
gulp.task('minify', ['bundle'], function () {
minify(NAME)
});
gulp.task(
'minify',
gulp.series(gulp.parallel('bundle'), function(done) {
minify(NAME);
done();
})
);
gulp.task('minify-minimalist', ['bundle-minimalist'], function () {
minify(NAME_MINIMALIST)
});
gulp.task(
'minify-minimalist',
gulp.series(gulp.parallel('bundle-minimalist'), function(done) {
minify(NAME_MINIMALIST);
done();
})
);
// TODO: zip file using archiver
var pkg = 'jsoneditor-' + require('./package.json').version + '.zip';
gulp.task('zip', shell.task([
'zip ' + pkg + ' ' + 'README.md NOTICE LICENSE HISTORY.md index.html src dist docs examples -r '
]));
gulp.task(
'zip',
shell.task([
'zip ' +
pkg +
' ' +
'README.md NOTICE LICENSE HISTORY.md index.html src dist docs examples -r '
])
);
// The watch task (to automatically rebuild when the source code changes)
// Does only generate jsoneditor.js and jsoneditor.css, and copy the image
// Does NOT minify the code and does NOT generate the minimalist version
gulp.task('watch', ['bundle', 'bundle-css', 'copy-img'], function () {
gulp.watch(['src/**/*'], ['bundle', 'bundle-css', 'copy-img']);
});
gulp.task(
'watch',
gulp.series(gulp.parallel('bundle', 'bundle-css', 'copy-img'), function() {
gulp.watch(['src/**/*'], gulp.series('bundle', 'bundle-css', 'copy-img'));
})
);
// The default task (called when you run `gulp`)
gulp.task('default', [
'bundle',
'bundle-minimalist',
'bundle-css',
'copy-img',
'copy-docs',
'minify',
'minify-minimalist'
]);
gulp.task(
'default',
gulp.series(
gulp.parallel(
'bundle',
'bundle-minimalist',
'bundle-css',
'copy-img',
'copy-docs',
'minify',
'minify-minimalist'
)
)
);

2059
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -33,7 +33,7 @@
"vanilla-picker": "2.4.2"
},
"devDependencies": {
"gulp": "3.9.1",
"gulp": "4.0.0",
"gulp-clean-css": "3.4.2",
"gulp-concat-css": "2.3.0",
"gulp-shell": "0.6.3",