Skip to content

Commit 1fde86e

Browse files
whtskyclaude
andcommitted
Upgrade dependencies and update footer link
- Upgrade Node.js to LTS in CI and Dockerfile - Upgrade rollup and @rollup plugins to latest versions - Update whtsky link in footer to blog.whtsky.me Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
1 parent 924ab2f commit 1fde86e

5 files changed

Lines changed: 295 additions & 137 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- name: Use Node.js 18
10+
- name: Use Node.js LTS
1111
uses: actions/setup-node@v4
1212
with:
13-
node-version: 18
13+
node-version: lts/*
1414
- run: yarn
1515
- run: yarn test
1616
- uses: codecov/codecov-action@v3.1.1
1717
lighthouse:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
21-
- name: Use Node.js 18
21+
- name: Use Node.js LTS
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: lts/*
2525
- run: yarn
2626
- run: yarn build
2727
- name: Run Lighthouse
@@ -33,10 +33,10 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- uses: actions/checkout@v4
36-
- name: Use Node.js 18
36+
- name: Use Node.js LTS
3737
uses: actions/setup-node@v4
3838
with:
39-
node-version: 18
39+
node-version: lts/*
4040
- uses: cypress-io/github-action@v5
4141
with:
4242
build: yarn build

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18 AS build
1+
FROM node:lts AS build
22
WORKDIR /app
33
ENV CYPRESS_INSTALL_BINARY=0
44

@@ -13,7 +13,7 @@ COPY src /app/src
1313
COPY index.html /app
1414
RUN yarn build
1515

16-
FROM node:18
16+
FROM node:lts
1717
WORKDIR /app
1818
COPY yarn.lock /app
1919
COPY package.json /app

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h2 class="text-lg font-bold my-2">Bookmarklet</h2>
113113
<p class="text-sm p-4 m-4 text-center text-gray-800">
114114
<a href="https://github.com/whtsky/fulltextrssplz" class="text-gray-500 hover:text-gray-700">fulltextrssplz</a>
115115
is created by
116-
<a href="https://github.com/whtsky/" class="text-gray-500 hover:text-gray-700">whtsky</a>
116+
<a href="https://blog.whtsky.me/" class="text-gray-500 hover:text-gray-700">whtsky</a>
117117
</p>
118118
</div>
119119
</body>

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"license": "MIT",
77
"private": true,
88
"devDependencies": {
9-
"@rollup/plugin-commonjs": "^21.1.0",
10-
"@rollup/plugin-node-resolve": "^13.3.0",
11-
"@rollup/plugin-terser": "^0.4.0",
12-
"@rollup/plugin-typescript": "^8.5.0",
9+
"@rollup/plugin-commonjs": "^29.0.2",
10+
"@rollup/plugin-node-resolve": "^16.0.3",
11+
"@rollup/plugin-terser": "^1.0.0",
12+
"@rollup/plugin-typescript": "^12.3.0",
1313
"@tailwindcss/forms": "0.5.3",
1414
"@types/crypto-js": "^4.1.1",
1515
"@types/cypress": "^1.1.3",
@@ -24,7 +24,7 @@
2424
"jest": "^28.1.3",
2525
"postcss": "8.5.10",
2626
"prettier": "^2.8.4",
27-
"rollup": "^2.79.1",
27+
"rollup": "^4.60.2",
2828
"rollup-plugin-generate-html-template": "1.7.0",
2929
"rollup-plugin-postcss": "^4.0.2",
3030
"start-server-and-test": "^1.15.5",

0 commit comments

Comments
 (0)