Skip to content

Commit b070995

Browse files
committed
[optimize] support Async Rendering mode
[optimize] update Upstream packages [fix] Meta updater
1 parent 627a641 commit b070995

File tree

7 files changed

+1649
-1905
lines changed

7 files changed

+1649
-1905
lines changed

Diff for: .github/workflows/update-meta.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI & CD
1+
name: Update Meta
22
on:
33
push:
44
branches:
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
# "Administration" repository permissions (write),
2323
# https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#replace-all-repository-topics
24-
GH_TOKEN: ${{ secrets.GH_ADMIN_TOKEN || github.token }}
24+
GH_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
2525
REPOSITORY: ${{ github.repository }}
2626
run: |
2727
DESCRIPTION=$(node -p "JSON.parse(require('fs').readFileSync('package.json')).description || ''")
@@ -33,4 +33,4 @@ jobs:
3333
[[ "$TOPICS" ]] && {
3434
gh api --method PUT "repos/$REPOSITORY/topics" -f "names[]"
3535
gh repo edit "$REPOSITORY" --add-topic "$TOPICS"
36-
} || true
36+
}

Diff for: ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
App Project scaffold of [WebCell][1] v3
66

7-
https://web-cell-scaffold.vercel.app/
7+
https://web-cell.dev/WebCell-scaffold/
88

99
[![CI & CD](https://github.com/EasyWebApp/WebCell-scaffold/actions/workflows/main.yml/badge.svg)][2]
1010

Diff for: package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -18,38 +18,38 @@
1818
"dependencies": {
1919
"boot-cell": "^2.0.0-beta.29",
2020
"browser-unhandled-rejection": "^1.0.2",
21-
"cell-router": "^3.0.0-rc.8",
21+
"cell-router": "^3.0.1",
2222
"classnames": "^2.5.1",
23-
"dom-renderer": "^2.4.1",
23+
"dom-renderer": "^2.6.0",
2424
"iterable-observer": "^1.1.0",
2525
"mobx": "^6.13.5",
26-
"web-cell": "^3.0.0",
26+
"web-cell": "^3.0.3",
2727
"web-utility": "^4.4.2"
2828
},
2929
"devDependencies": {
30-
"@eslint/compat": "^1.2.2",
31-
"@eslint/js": "^9.14.0",
32-
"@parcel/config-default": "~2.12.0",
33-
"@parcel/packager-raw-url": "~2.12.0",
34-
"@parcel/transformer-less": "~2.12.0",
35-
"@parcel/transformer-typescript-tsc": "~2.12.0",
36-
"@parcel/transformer-webmanifest": "~2.12.0",
30+
"@eslint/compat": "^1.2.3",
31+
"@eslint/js": "^9.15.0",
32+
"@parcel/config-default": "~2.13.0",
33+
"@parcel/packager-raw-url": "~2.13.0",
34+
"@parcel/transformer-less": "~2.13.0",
35+
"@parcel/transformer-typescript-tsc": "~2.13.0",
36+
"@parcel/transformer-webmanifest": "~2.13.0",
3737
"@softonus/prettier-plugin-duplicate-remover": "^1.0.1",
3838
"@types/eslint-config-prettier": "^6.11.3",
3939
"@types/node": "^20.17.6",
40-
"eslint": "^9.14.0",
40+
"eslint": "^9.15.0",
4141
"eslint-config-prettier": "^9.1.0",
4242
"eslint-plugin-react": "^7.37.2",
4343
"eslint-plugin-simple-import-sort": "^12.1.1",
4444
"globals": "^15.12.0",
45-
"husky": "^9.1.6",
45+
"husky": "^9.1.7",
4646
"lint-staged": "^15.2.10",
47-
"parcel": "~2.12.0",
48-
"postcss": "^8.4.47",
47+
"parcel": "~2.13.0",
48+
"postcss": "^8.4.49",
4949
"prettier": "^3.3.3",
5050
"prettier-plugin-css-order": "^2.1.2",
5151
"typescript": "~5.6.3",
52-
"typescript-eslint": "^8.13.0",
52+
"typescript-eslint": "^8.15.0",
5353
"workbox-cli": "^7.3.0"
5454
},
5555
"prettier": {

0 commit comments

Comments
 (0)