Move .babelrc to babel.config.json
This commit is contained in:
parent
3152c8f14e
commit
c7aa431e4a
4 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ FROM node:lts AS frontend-build
|
|||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./*.json ./*.js ./.babelrc /app/
|
||||
COPY ./*.json ./*.js ./babel.config.json /app/
|
||||
|
||||
RUN npm ci
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ FROM node:lts
|
|||
WORKDIR /app
|
||||
RUN mkdir /app/src
|
||||
|
||||
COPY package*.json webpack.*.js .babelrc /app/
|
||||
COPY package*.json webpack.*.js babel.config.json /app/
|
||||
|
||||
RUN npm install
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,6 @@ javascript-tests:
|
|||
stage: test
|
||||
image: node:lts
|
||||
before_script:
|
||||
- npm ci
|
||||
- npm install
|
||||
script:
|
||||
- npm test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue