2016-11-15 08:24:20 +00:00
|
|
|
const fs = require('fs')
|
2016-10-05 23:52:50 +00:00
|
|
|
const gulp = require('gulp')
|
|
|
|
const babel = require('gulp-babel')
|
|
|
|
const cache = require('gulp-cached')
|
|
|
|
const notify_ = require('gulp-notify')
|
2016-10-13 20:01:11 +00:00
|
|
|
const benchmark = require('gulp-benchmark')
|
2016-10-10 04:18:56 +00:00
|
|
|
const sequence = require('run-sequence')
|
2016-12-28 18:16:52 +00:00
|
|
|
const webpack = require('webpack')
|
|
|
|
const webpackStream = require('webpack-stream')
|
2016-10-05 23:52:50 +00:00
|
|
|
const del = require('del')
|
2017-01-12 04:14:49 +00:00
|
|
|
const childProcess = require('child_process')
|
2016-10-05 23:52:50 +00:00
|
|
|
|
2017-01-12 04:14:49 +00:00
|
|
|
const isWindows = /^win/.test(process.platform)
|
2016-11-15 08:24:20 +00:00
|
|
|
const babelOptions = JSON.parse(fs.readFileSync('.babelrc', 'utf-8'))
|
2016-10-05 23:52:50 +00:00
|
|
|
|
|
|
|
gulp.task('compile', [
|
|
|
|
'compile-bin',
|
|
|
|
'compile-lib',
|
|
|
|
'compile-server',
|
2016-12-26 03:29:53 +00:00
|
|
|
'compile-client',
|
|
|
|
'remove-strict-mode'
|
2016-10-05 23:52:50 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
gulp.task('compile-bin', () => {
|
|
|
|
return gulp.src('bin/*')
|
|
|
|
.pipe(cache('bin'))
|
|
|
|
.pipe(babel(babelOptions))
|
|
|
|
.pipe(gulp.dest('dist/bin'))
|
|
|
|
.pipe(notify('Compiled binaries'))
|
|
|
|
})
|
|
|
|
|
|
|
|
gulp.task('compile-lib', () => {
|
|
|
|
return gulp.src('lib/**/*.js')
|
|
|
|
.pipe(cache('lib'))
|
|
|
|
.pipe(babel(babelOptions))
|
|
|
|
.pipe(gulp.dest('dist/lib'))
|
|
|
|
.pipe(notify('Compiled lib files'))
|
|
|
|
})
|
|
|
|
|
|
|
|
gulp.task('compile-server', () => {
|
|
|
|
return gulp.src('server/**/*.js')
|
|
|
|
.pipe(cache('server'))
|
|
|
|
.pipe(babel(babelOptions))
|
|
|
|
.pipe(gulp.dest('dist/server'))
|
|
|
|
.pipe(notify('Compiled server files'))
|
|
|
|
})
|
|
|
|
|
|
|
|
gulp.task('compile-client', () => {
|
|
|
|
return gulp.src('client/**/*.js')
|
|
|
|
.pipe(cache('client'))
|
|
|
|
.pipe(babel(babelOptions))
|
|
|
|
.pipe(gulp.dest('dist/client'))
|
|
|
|
.pipe(notify('Compiled client files'))
|
|
|
|
})
|
|
|
|
|
2016-12-26 03:29:53 +00:00
|
|
|
gulp.task('remove-strict-mode', ['compile-lib'], () => {
|
|
|
|
return gulp.src('dist/lib/eval-script.js')
|
|
|
|
.pipe(babel({
|
|
|
|
babelrc: false,
|
|
|
|
plugins: ['babel-plugin-transform-remove-strict-mode']
|
|
|
|
}))
|
|
|
|
.pipe(gulp.dest('dist/lib'))
|
|
|
|
.pipe(notify('Completed removing strict mode for eval script'))
|
|
|
|
})
|
|
|
|
|
2016-11-06 17:20:10 +00:00
|
|
|
gulp.task('copy', ['copy-pages'])
|
2016-10-14 15:05:08 +00:00
|
|
|
|
|
|
|
gulp.task('copy-pages', () => {
|
|
|
|
return gulp.src('pages/**/*.js')
|
|
|
|
.pipe(gulp.dest('dist/pages'))
|
|
|
|
})
|
|
|
|
|
2016-10-13 20:01:11 +00:00
|
|
|
gulp.task('compile-bench', () => {
|
|
|
|
return gulp.src('bench/*.js')
|
|
|
|
.pipe(cache('bench'))
|
|
|
|
.pipe(babel(babelOptions))
|
|
|
|
.pipe(gulp.dest('dist/bench'))
|
|
|
|
.pipe(notify('Compiled bench files'))
|
|
|
|
})
|
|
|
|
|
|
|
|
gulp.task('copy-bench-fixtures', () => {
|
|
|
|
return gulp.src('bench/fixtures/**/*')
|
|
|
|
.pipe(gulp.dest('dist/bench/fixtures'))
|
|
|
|
})
|
2016-10-10 04:18:56 +00:00
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
gulp.task('build', [
|
2016-12-15 19:13:40 +00:00
|
|
|
'build-prefetcher'
|
2016-10-05 23:52:50 +00:00
|
|
|
])
|
|
|
|
|
2016-12-15 19:13:40 +00:00
|
|
|
gulp.task('build-prefetcher', ['compile-lib', 'compile-client'], () => {
|
|
|
|
return gulp
|
|
|
|
.src('client/next-prefetcher.js')
|
2016-12-28 18:16:52 +00:00
|
|
|
.pipe(webpackStream({
|
2016-12-15 19:13:40 +00:00
|
|
|
output: { filename: 'next-prefetcher-bundle.js' },
|
|
|
|
plugins: [
|
2016-12-28 18:16:52 +00:00
|
|
|
new webpack.DefinePlugin({
|
2016-12-15 19:13:40 +00:00
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify('production')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
],
|
|
|
|
module: {
|
2016-12-28 18:16:52 +00:00
|
|
|
rules: [
|
2016-12-15 19:13:40 +00:00
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
2016-12-28 18:16:52 +00:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
babelrc: false,
|
|
|
|
presets: [
|
2016-12-15 19:13:40 +00:00
|
|
|
['env', {
|
2016-12-28 18:16:52 +00:00
|
|
|
targets: {
|
2016-12-15 19:13:40 +00:00
|
|
|
// All browsers which supports service workers
|
2016-12-28 18:16:52 +00:00
|
|
|
browsers: ['chrome 49', 'firefox 49', 'opera 41']
|
2016-12-15 19:13:40 +00:00
|
|
|
}
|
|
|
|
}]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-12-28 18:16:52 +00:00
|
|
|
}, webpack))
|
2016-12-15 19:13:40 +00:00
|
|
|
.pipe(gulp.dest('dist/client'))
|
|
|
|
.pipe(notify('Built release prefetcher'))
|
|
|
|
})
|
|
|
|
|
2016-11-06 17:20:10 +00:00
|
|
|
gulp.task('bench', ['compile', 'copy', 'compile-bench', 'copy-bench-fixtures'], () => {
|
2016-10-13 20:01:11 +00:00
|
|
|
return gulp.src('dist/bench/*.js', {read: false})
|
|
|
|
.pipe(benchmark({
|
|
|
|
reporters: benchmark.reporters.etalon('RegExp#test')
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
gulp.task('watch', [
|
|
|
|
'watch-bin',
|
|
|
|
'watch-lib',
|
|
|
|
'watch-server',
|
2016-11-19 21:25:07 +00:00
|
|
|
'watch-client',
|
|
|
|
'watch-pages'
|
2016-10-05 23:52:50 +00:00
|
|
|
])
|
|
|
|
|
2016-10-10 04:18:56 +00:00
|
|
|
gulp.task('watch-bin', () => {
|
2016-10-05 23:52:50 +00:00
|
|
|
return gulp.watch('bin/*', [
|
|
|
|
'compile-bin'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
2016-10-10 04:18:56 +00:00
|
|
|
gulp.task('watch-lib', () => {
|
2016-10-05 23:52:50 +00:00
|
|
|
return gulp.watch('lib/**/*.js', [
|
|
|
|
'compile-lib',
|
2016-10-25 07:01:32 +00:00
|
|
|
'build'
|
2016-10-05 23:52:50 +00:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
2016-10-10 04:18:56 +00:00
|
|
|
gulp.task('watch-server', () => {
|
2016-10-05 23:52:50 +00:00
|
|
|
return gulp.watch('server/**/*.js', [
|
|
|
|
'compile-server'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
2016-10-10 04:18:56 +00:00
|
|
|
gulp.task('watch-client', () => {
|
2016-10-05 23:52:50 +00:00
|
|
|
return gulp.watch('client/**/*.js', [
|
|
|
|
'compile-client',
|
2016-10-25 07:01:32 +00:00
|
|
|
'build'
|
2016-10-05 23:52:50 +00:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
2016-11-19 21:25:07 +00:00
|
|
|
gulp.task('watch-pages', () => {
|
|
|
|
return gulp.watch('pages/**/*.js', [
|
|
|
|
'copy-pages'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
gulp.task('clean', () => {
|
2016-10-10 04:18:56 +00:00
|
|
|
return del('dist')
|
|
|
|
})
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
gulp.task('default', [
|
|
|
|
'compile',
|
|
|
|
'build',
|
2016-10-14 15:05:08 +00:00
|
|
|
'copy',
|
2016-10-05 23:52:50 +00:00
|
|
|
'watch'
|
|
|
|
])
|
|
|
|
|
2016-10-10 04:18:56 +00:00
|
|
|
gulp.task('release', (cb) => {
|
|
|
|
sequence('clean', [
|
|
|
|
'compile',
|
2016-10-25 07:01:32 +00:00
|
|
|
'build',
|
2016-10-14 15:05:08 +00:00
|
|
|
'copy',
|
2016-11-15 08:24:20 +00:00
|
|
|
], cb)
|
2016-10-10 04:18:56 +00:00
|
|
|
})
|
2016-10-05 23:52:50 +00:00
|
|
|
|
2017-01-12 04:14:49 +00:00
|
|
|
// We run following task inside a NPM script chain and it runs chromedriver
|
|
|
|
// inside a child process tree.
|
|
|
|
// Even though we kill this task's process, chromedriver exists throughout
|
|
|
|
// the lifetime of the original npm script.
|
|
|
|
|
|
|
|
gulp.task('start-chromedriver', ['stop-chromedriver'], (cb) => {
|
|
|
|
const processName = isWindows? 'chromedriver.cmd' : 'chromedriver'
|
|
|
|
const chromedriver = childProcess.spawn(processName, { stdio: 'inherit' })
|
|
|
|
|
|
|
|
const timeoutHandler = setTimeout(() => {
|
|
|
|
// We need to do this, otherwise this task's process will keep waiting.
|
|
|
|
process.exit(0)
|
|
|
|
}, 2000)
|
|
|
|
})
|
|
|
|
|
|
|
|
gulp.task('stop-chromedriver', () => {
|
|
|
|
try {
|
|
|
|
if (isWindows) {
|
|
|
|
childProcess.execSync('taskkill /im chromedriver* /t /f', { stdio: 'ignore' })
|
|
|
|
} else {
|
|
|
|
childProcess.execSync('pkill chromedriver', { stdio: 'ignore' })
|
|
|
|
}
|
|
|
|
} catch(ex) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
// avoid logging to the console
|
|
|
|
// that we created a notification
|
|
|
|
notify_.logLevel(0)
|
|
|
|
|
|
|
|
// notification helper
|
|
|
|
function notify (msg) {
|
|
|
|
return notify_({
|
|
|
|
title: '▲ Next',
|
|
|
|
message: msg,
|
|
|
|
icon: false,
|
|
|
|
onLast: true
|
|
|
|
})
|
|
|
|
}
|