Skip to content

Instantly share code, notes, and snippets.

@BiosBoy
Last active January 13, 2019 10:28
Show Gist options
  • Select an option

  • Save BiosBoy/7923df2e7e6273cc4c80b2cd6501a90b to your computer and use it in GitHub Desktop.

Select an option

Save BiosBoy/7923df2e7e6273cc4c80b2cd6501a90b to your computer and use it in GitHub Desktop.
// -----------------------------
// STARTING APP COMPILATION PROCESS
// -----------------------------
const compile = () => {
debug('Starting compiler.');
return Promise.resolve()
.then(() => webpackCompiler())
.then(() => {
debug('Compilation completed successfully.');
})
.catch(err => {
debug('Compiler encountered an error.', err);
process.exit(1);
});
};
compile();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment