Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #15

Merged
merged 11 commits into from
Oct 4, 2023
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ parameters:

node-version:
type: string
default: 18.15-browsers
default: 18.17-browsers
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can go to 18.18-browsers

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done


jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
"printWidth": 120,
"semi": false
}
]
],
"no-empty-function": ["error", { "allow": ["constructors", "arrowFunctions"] }]
}
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage: base image
FROM node:18.16-bullseye-slim as base
FROM node:20.8-bullseye-slim as base
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need to stay on the LTS version so need to be FROM node:18.18-bullseye-slim as base

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done - though this comes from a PR kicked off by renovate-bot #8


ARG BUILD_NUMBER=1_0_0
ARG GIT_REF=not-available
Expand Down
Loading