build.js 354 B

1234567891011121314
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
  5. */
  6. import task from './lib/task';
  7. export default task(async function build() {
  8. await require('./clean')();
  9. await require('./copy')();
  10. await require('./bundle')();
  11. await require('./render')();
  12. });