Skip to content

Commit

Permalink
Perform minor dependency update (#394) (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssciolla authored Jul 7, 2022
1 parent 1fdff1d commit 81d1625
Show file tree
Hide file tree
Showing 9 changed files with 3,776 additions and 5,152 deletions.
2 changes: 1 addition & 1 deletion ccm_web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ COPY --from=base \
/base/ecosystem.config.js \
./
RUN npm install --production
RUN npm install pm2@5.1.2 -g
RUN npm install pm2@5.2.0 -g
COPY --from=build /build/dist/ ./

# Set PM2_HOME so that .pm2 files are written in /tmp/
Expand Down
2 changes: 1 addition & 1 deletion ccm_web/Dockerfile.openshift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COPY --from=build \
/build/ecosystem.config.js \
./
RUN npm install --production
RUN npm install pm2@5.1.2 -g
RUN npm install pm2@5.2.0 -g
COPY --from=build /build/dist/ ./

# Set PM2_HOME so that .pm2 files are written in /tmp/
Expand Down
8 changes: 0 additions & 8 deletions ccm_web/client/src/App.test.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions ccm_web/client/src/setupTests.ts

This file was deleted.

4 changes: 2 additions & 2 deletions ccm_web/client/src/utils/FileParserWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default class FileParserWrapper {

static readonly defaultParseConfigOptions: Papa.ParseConfig = Object.freeze({
header: true,
transform: value => value.trim(),
transformHeader: header => header.toUpperCase()
transform: (value: string) => value.trim(),
transformHeader: (header: string) => header.toUpperCase()
})

constructor (parseConfig?: Papa.ParseConfig, unparseConfig?: Papa.UnparseConfig) {
Expand Down
Loading

0 comments on commit 81d1625

Please sign in to comment.