var fs = require('fs'), gulp = require('gulp'), gutil = require('gulp-util'), webpack = require('webpack'), uglify = require('uglify-js'); var ENTRY = './index.js', HEADER = './lib/header.js', FILE = 'math.js', FILE_MIN = 'math.min.js', FILE_MAP = 'math.map', DIST = './dist', MATH_JS = DIST + '/' + FILE, MATH_MIN_JS = DIST + '/' + FILE_MIN, MATH_MAP_JS = DIST + '/' + FILE_MAP; // 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 }); var webpackConfig = { entry: ENTRY, output: { library: 'mathjs', libraryTarget: 'umd', path: DIST, filename: FILE }, plugins: [ bannerPlugin ], cache: true }; var uglifyConfig = { outSourceMap: FILE_MAP, output: { comments: /@license/ } }; // create a single instance of the compiler to allow caching var compiler = webpack(webpackConfig); gulp.task('bundle', ['validate'], function (cb) { // 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); } gutil.log('bundled ' + MATH_JS); cb(); }); }); gulp.task('minify', ['bundle'], function () { var result = uglify.minify([MATH_JS], uglifyConfig); fs.writeFileSync(MATH_MIN_JS, result.code + '\n//# sourceMappingURL=' + FILE_MAP); fs.writeFileSync(MATH_MAP_JS, result.map); gutil.log('Minified ' + MATH_MIN_JS); gutil.log('Mapped ' + MATH_MAP_JS); }); // test whether the docs for the expression parser are complete gulp.task('validate', function (cb) { var exec = require('exec'); // this is run in a separate process as the modules need to be reloaded // with every validation (and required modules stay in cache). exec(['node', 'tools/validate'], function(err, out, code) { if (err instanceof Error) throw err; process.stderr.write(err); process.stdout.write(out); cb(); }); }); // The default task (called when you run `gulp`) gulp.task('default', ['bundle', 'minify']); // The watch task (to automatically rebuild when the source code changes) gulp.task('watch', ['bundle', 'minify'], function () { gulp.watch(['index.js', 'lib/**/*.js'], ['bundle', 'minify']); });