Skip to content

Commit a3e1f6b

Browse files
committed
Merge branch 'develop' of https://github.com/OpenWebconcept/plugin-datainmap into develop
2 parents d369585 + d897323 commit a3e1f6b

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
cache: 'npm'
2222
- name: Install Node.js dependencies
2323
run: npm install
24-
- name: Build Javascript & CSS
24+
- name: Build Javascript
2525
env:
2626
# Fix for ERR_OSSL_EVP_UNSUPPORTED error caused by Webpack
2727
NODE_OPTIONS: --openssl-legacy-provider
28-
run: |
29-
npm run css-dev
30-
npm run webpack-dev
28+
run: npm run webpack-prod
29+
- name: Build CSS
30+
run: npm run css-prod

Dockerfile.node-builder

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ RUN apk add --no-cache --virtual .gyp git python3 make g++ libc6-compat
99
RUN npm config set unsafe-perm true
1010
ADD package*.json ./
1111
RUN npm install
12-
ADD create_archive.js .
1312
ADD webpack.config.js .
1413
COPY src ./src
1514
# --legacy-peer-deps
16-
CMD npm run css-prod && npm run webpack-prod
15+
CMD npm run css-prod && npm run webpack-prod

0 commit comments

Comments
 (0)