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