admin-fe/build/build.js

68 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

'use strict'
require('./check-versions')()
2017-04-18 07:09:13 +00:00
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
2018-08-15 07:33:34 +00:00
var connect = require('connect')
var serveStatic = require('serve-static')
2017-04-18 07:09:13 +00:00
2018-08-15 07:33:34 +00:00
const spinner = ora(
'building for ' + process.env.env_config + ' environment...'
)
spinner.start()
2017-04-18 07:09:13 +00:00
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
2017-04-18 07:09:13 +00:00
if (err) throw err
2018-08-15 07:33:34 +00:00
process.stdout.write(
stats.toString({
colors: true,
modules: false,
children: false,
chunks: false,
chunkModules: false
}) + '\n\n'
)
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
2017-04-18 07:09:13 +00:00
console.log(chalk.cyan(' Build complete.\n'))
2018-08-15 07:33:34 +00:00
console.log(
chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
" Opening index.html over file:// won't work.\n"
)
)
if (process.env.npm_config_preview) {
const port = 9526
2018-08-15 07:33:34 +00:00
const host = 'http://localhost:' + port
const basePath = config.build.assetsPublicPath
const app = connect()
2018-08-15 07:33:34 +00:00
app.use(
basePath,
serveStatic('./dist', {
index: ['index.html', '/']
})
)
2018-08-15 07:33:34 +00:00
app.listen(port, function() {
console.log(
chalk.green(`> Listening at http://localhost:${port}${basePath}`)
)
})
}
})
2017-04-18 07:09:13 +00:00
})