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

chore: update node to 22.11.0 LTS #253

Merged
merged 2 commits into from
Oct 31, 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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20.9.0
node-version: 22.11.0

- name: Setup up Bun
uses: oven-sh/setup-bun@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup up Node
uses: actions/setup-node@v3
with:
node-version: 20.9.0
node-version: 22.11.0

- name: Setup up Bun
uses: oven-sh/setup-bun@v2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.9.0
22.11.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 20.9.0
nodejs 22.11.0
bun 1.1.32
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[build.environment]
TZ = "Europe/Lisbon"
NODE_VERSION = "20.9.0"
NODE_VERSION = "22.11.0"
NEXT_VERSION = "14.2.3"

[[plugins]]
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"stylelint-scss": "^4.3.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^18.3.1",
"autoprefixer": "^10.4.0",
"eslint": "8.23.0",
Expand Down
8 changes: 1 addition & 7 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -242,14 +242,8 @@ a {
border-radius: 8px;
}

/* shows a 'today' background color in month view */
.rbc-calendar .rbc-month-row .rbc-day-bg.rbc-today {
@apply bg-cesium-900/10;
}

/* hides 'today' background color by default */
.rbc-calendar .rbc-today {
@apply bg-transparent;
@apply bg-cesium-900/10;
}

.rbc-calendar .rbc-date-cell.rbc-now.rbc-current > button {
Expand Down
Loading