Skip to content

Instantly share code, notes, and snippets.

@hellobrian
Last active May 23, 2016 05:14
Show Gist options
  • Save hellobrian/d11e30456f3613802f366fd80c631e35 to your computer and use it in GitHub Desktop.
Save hellobrian/d11e30456f3613802f366fd80c631e35 to your computer and use it in GitHub Desktop.
npm lifecycle event
const TARGET = process.env.npm_lifecycle_event;
if (TARGET === ‘build’) {
console.log(`Running your build tasks!`);
}
if (TARGET === ‘dev’) {
console.log(`Running the dev server!`);
}
if (TARGET === ‘start’) {
console.log(`Running App in production!`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment