build.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. 'use strict'
  2. require('./check-versions')()
  3. process.env.NODE_ENV = 'production'
  4. const ora = require('ora')
  5. const rm = require('rimraf')
  6. const path = require('path')
  7. const chalk = require('chalk')
  8. const webpack = require('webpack')
  9. const config = require('../config')
  10. const webpackConfig = require('./webpack.prod.conf')
  11. const spinner = ora('building for production...')
  12. spinner.start()
  13. rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
  14. if (err) throw err
  15. webpack(webpackConfig, (err, stats) => {
  16. spinner.stop()
  17. if (err) throw err
  18. process.stdout.write(stats.toString({
  19. colors: true,
  20. modules: false,
  21. children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
  22. chunks: false,
  23. chunkModules: false
  24. }) + '\n\n')
  25. if (stats.hasErrors()) {
  26. console.log(chalk.red(' Build failed with errors.\n'))
  27. process.exit(1)
  28. }
  29. console.log(chalk.cyan(' Build complete.\n'))
  30. console.log(chalk.yellow(
  31. ' Tip: built files are meant to be served over an HTTP server.\n' +
  32. ' Opening index.html over file:// won\'t work.\n'
  33. ))
  34. })
  35. })