Created
March 30, 2019 22:12
-
-
Save zeekrey/93806b8ded460eb56360a937112d8b2d to your computer and use it in GitHub Desktop.
AWS CodeBuild buildspec for Vue.js
This file contains 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
version: 0.2 | |
phases: | |
install: | |
commands: | |
- npm install -g yarn | |
pre_build: | |
commands: | |
- yarn install | |
build: | |
commands: | |
- yarn build | |
post_build: | |
commands: | |
- echo nothing to do | |
artifacts: | |
files: | |
- '**/*' | |
base-directory: dist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment