From 608caa0bb1cf9c03859c87a9c28a67c7960399d9 Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Thu, 1 Jul 2021 17:16:56 -0400 Subject: [PATCH] Add buildspec file --- buildspec.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..9b1f8c1 --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,23 @@ +version: 0.2 + +phases: + install: + runtime-versions: + nodejs: 14 + commands: + - echo Installing dependencies... + - npm install + build: + commands: + - echo Starting Build Stage + - npm run build + post-build: + commands: + - echo Build completed on `date` +artifacts: + files: + - 'dist/**/*'' +cache: + paths: + - '/root/.npm/**/*' + - '/node_modules/' \ No newline at end of file