Replace yarn.lock with package-lock.json

This commit is contained in:
Christian Bundy 2020-01-03 15:05:10 -08:00
parent 64154f2eed
commit f26a148244
4 changed files with 10651 additions and 8318 deletions

8
.gitignore vendored
View File

@ -1,8 +1,8 @@
node_modules/
*.log*
.DS_Store
.nyc_output/
coverage/
dist/
node_modules/
tmp/
*.log*
package-lock.json
.DS_Store
yarn.lock

View File

@ -3,8 +3,8 @@ RUN apk add --update --no-cache libtool autoconf automake alpine-sdk python3
RUN mkdir /app
WORKDIR /app
ADD package.json .
ADD yarn.lock .
RUN yarn
ADD package-lock.json .
RUN npm ci
ADD . ./
EXPOSE 3000
EXPOSE 8008

10645
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

8312
yarn.lock

File diff suppressed because it is too large Load Diff