Created
December 20, 2017 07:54
-
-
Save yohangz/c38a1ddeb56a3dcd8a6761f80a7d9a44 to your computer and use it in GitHub Desktop.
Play react seed frontend comands
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
| /** | |
| * Frontend build commands. | |
| * Change these if you are using some other package manager. i.e: Yarn | |
| */ | |
| object FrontendCommands { | |
| val dependencyInstall: String = "npm install" | |
| val test: String = "npm run test" | |
| val serve: String = "npm run start" | |
| val build: String = "npm run build" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment