Skip to content

Commit

Permalink
feat: update buildspec version
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadcove committed Nov 17, 2022
1 parent 221f0dd commit edfaaf4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .ebignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# dependencies
node_modules/
# repository/project stuff
.idea/
.git/
.gitlab-ci.yml
README.md
# misc
.DS_Store
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
# non prod env files
.env.development
.env.test
8 changes: 7 additions & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
version: 0.1
version: 0.2
phases:
install:
runtime-versions:
nodejs: 16
pre_build:
commands:
- npm ci
build:
commands:
- npm run build
post_build:
commands:
- rm -rf node_modules
artifacts:
files:
- '**/*'
Expand Down

0 comments on commit edfaaf4

Please sign in to comment.