Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

core-324-security-fix-v1 #237

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ workflows:
branches:
only:
- dev
- CORE-324-fix

# Production builds are exectuted only on tagged commits to the
# master branch.
Expand Down
17 changes: 10 additions & 7 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ const config = {
regenerator: false,
},
],
['react-css-modules', {
filetypes: {
'.scss': {
syntax: 'postcss-scss',
[
"@dr.pogodin/babel-plugin-react-css-modules",
{
filetypes: {
'.scss': {
syntax: 'postcss-scss',
},
},
},
generateScopedName: cssLocalIdent
}],
generateScopedName: cssLocalIdent
}
],
]
};

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the base image with Node.js
FROM node:10.22.1
FROM node:21.6.0

ARG APPMODE
ARG APPENV
Expand Down
Loading