Move .babelrc to babel.config.json

This commit is contained in:
Sonny Bakker 2024-08-24 16:38:53 +02:00
parent 3152c8f14e
commit c7aa431e4a
4 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ FROM node:lts AS frontend-build
WORKDIR /app WORKDIR /app
COPY ./*.json ./*.js ./.babelrc /app/ COPY ./*.json ./*.js ./babel.config.json /app/
RUN npm ci RUN npm ci

View file

@ -3,7 +3,7 @@ FROM node:lts
WORKDIR /app WORKDIR /app
RUN mkdir /app/src RUN mkdir /app/src
COPY package*.json webpack.*.js .babelrc /app/ COPY package*.json webpack.*.js babel.config.json /app/
RUN npm install RUN npm install

View file

@ -15,6 +15,6 @@ javascript-tests:
stage: test stage: test
image: node:lts image: node:lts
before_script: before_script:
- npm ci - npm install
script: script:
- npm test - npm test