const notifier = require('node-notifier') const relative = require('path').relative const babelOpts = { presets: [ ['@babel/preset-env', { modules: 'commonjs', 'targets': { 'browsers': ['IE 11'] } }] ], plugins: [ ['@babel/plugin-transform-runtime', { corejs: 2, helpers: true, regenerator: true, useESModules: false }] ] } // eslint-disable-next-line camelcase export async function ncc_nanoid (task, opts) { await task .source(opts.src || relative(__dirname, require.resolve('nanoid'))) .ncc({ packageName: 'nanoid' }) .target('dist/compiled/nanoid') } // eslint-disable-next-line camelcase export async function ncc_unistore (task, opts) { await task .source(opts.src || relative(__dirname, require.resolve('unistore'))) .ncc({ packageName: 'unistore' }) .target('dist/compiled/unistore') } // eslint-disable-next-line camelcase export async function ncc_text_table (task, opts) { await task .source(opts.src || relative(__dirname, require.resolve('text-table'))) .ncc({ packageName: 'text-table' }) .target('dist/compiled/text-table') } export async function precompile (task) { await task.parallel(['ncc_unistore', 'ncc_nanoid', 'ncc_text_table']) } export async function compile (task) { await task.parallel(['cli', 'bin', 'server', 'nextbuild', 'nextbuildstatic', 'pages', 'lib', 'client']) } export async function bin (task, opts) { await task.source(opts.src || 'bin/*').typescript({ module: 'commonjs', stripExtension: true }).target('dist/bin', { mode: '0755' }) notify('Compiled binaries') } export async function cli (task, opts) { await task.source(opts.src || 'cli/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).target('dist/cli') notify('Compiled cli files') } export async function lib (task, opts) { await task.source(opts.src || 'lib/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).target('dist/lib') notify('Compiled lib files') } export async function server (task, opts) { await task.source(opts.src || 'server/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).target('dist/server') notify('Compiled server files') } export async function nextbuild (task, opts) { await task.source(opts.src || 'build/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).target('dist/build') notify('Compiled build files') } export async function client (task, opts) { await task.source(opts.src || 'client/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).babel(babelOpts).target('dist/client') notify('Compiled client files') } // export is a reserved keyword for functions export async function nextbuildstatic (task, opts) { await task.source(opts.src || 'export/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).target('dist/export') notify('Compiled export files') } export async function pages (task, opts) { await task.source(opts.src || 'pages/**/*.+(js|ts|tsx)').typescript({ module: 'commonjs' }).babel(babelOpts).target('dist/pages') } export async function build (task) { await task.serial(['precompile', 'compile']) } export default async function (task) { await task.clear('dist') await task.start('build') await task.watch('bin/*', 'bin') await task.watch('pages/**/*.+(js|ts|tsx)', 'pages') await task.watch('server/**/*.+(js|ts|tsx)', 'server') await task.watch('build/**/*.+(js|ts|tsx)', 'nextbuild') await task.watch('export/**/*.+(js|ts|tsx)', 'nextexport') await task.watch('client/**/*.+(js|ts|tsx)', 'client') await task.watch('lib/**/*.+(js|ts|tsx)', 'lib') } export async function release (task) { await task.clear('dist').start('build') } // notification helper function notify (msg) { return notifier.notify({ title: '▲ Next', message: msg, icon: false }) }