Created
October 1, 2015 18:28
-
-
Save juliangruber/8cf89fe6d63728f78989 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('BUILD env=%s', process.env.NODE_ENV) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"dev": "NODE_ENV=dev npm start", | |
"start": "npm run build && node start.js", | |
"build": "node build.js" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('START env=%s', process.env.NODE_ENV) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment