Skip to content

Commit af4e301

Browse files
committed
upgrade deps, fix hint-fn async syntax, update CI to Corepack/yarn4
1 parent eb84fbf commit af4e301

7 files changed

Lines changed: 1703 additions & 1010 deletions

File tree

.github/workflows/upload.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- uses: actions/setup-node@v4
15+
- uses: actions/setup-node@v6
1616
with:
1717
node-version: 20
18-
cache: 'yarn'
18+
19+
- run: corepack enable && corepack prepare yarn@4.12.0 --activate
1920

2021
- uses: calcit-lang/setup-cr@0.0.8
2122

22-
- run: caps --ci && cr compact.cirru ir --entry server
23+
- run: caps --ci && cr compact.cirru --entry server ir
2324

24-
- run: yarn && yarn compile-page && yarn release-page
25+
- run: yarn install --immutable && yarn compile-page && yarn release-page
2526

2627
- run: mkdir -p dist-server && cp compact.cirru package.json deps.cirru dist-server
2728
name: Copy server scripts

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ backups/
1212
yarn-error.log
1313

1414
.DS_Store
15+
16+
.yarn/*.gz
17+

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

compact.cirru

Lines changed: 236 additions & 251 deletions
Large diffs are not rendered by default.

deps.cirru

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

22
{} (:calcit-version |0.12.14)
3-
:dependencies $ {} (|Cumulo/cumulo-reel.calcit |main)
4-
|Cumulo/cumulo-util.calcit |main
5-
|Respo/alerts.calcit |0.10.4
6-
|Respo/respo-feather.calcit |main
3+
:dependencies $ {} (|Cumulo/cumulo-reel.calcit |0.0.12)
4+
|Cumulo/cumulo-util.calcit |0.0.7
5+
|Respo/alerts.calcit |0.10.9
6+
|Respo/respo-feather.calcit |0.4.0-a1
77
|Respo/respo-message.calcit |0.0.9
8-
|Respo/respo-ui.calcit |0.6.3
9-
|Respo/respo.calcit |0.16.24
10-
|calcit-lang/calcit-http |0.1.4
11-
|calcit-lang/calcit-wss |0.2.6
12-
|calcit-lang/calcit.std |0.2.6
13-
|calcit-lang/lilac |main
14-
|calcit-lang/memof |0.0.17
8+
|Respo/respo-ui.calcit |0.6.4
9+
|Respo/respo.calcit |0.16.32
10+
|calcit-lang/calcit-http |0.3.2
11+
|calcit-lang/calcit-wss |0.2.8
12+
|calcit-lang/calcit.std |0.2.10
13+
|calcit-lang/lilac |0.5.1
14+
|calcit-lang/memof |0.0.23
1515
|calcit-lang/recollect |0.0.17
16-
|mvc-works/ws-edn.calcit |0.0.11
16+
|mvc-works/ws-edn.calcit |0.0.12

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
2-
"name": "Copyboard",
2+
"name": "copyboard",
33
"version": "0.1.0",
44
"description": "Cumulo Workflow",
55
"main": "index.js",
6+
"packageManager": "yarn@4.13.0",
67
"scripts": {
7-
"compile-page": "cr --once js",
8+
"compile-page": "cr compact.cirru js",
89
"release-page": "vite build --base=./",
910
"watch-page": "cr js"
1011
},
@@ -15,7 +16,7 @@
1516
"author": "jiyinyiyong",
1617
"license": "MIT",
1718
"dependencies": {
18-
"@calcit/procs": "^0.10.4",
19+
"@calcit/procs": "^0.12.14",
1920
"axios": "^1.13.5",
2021
"mime": "^4.1.0"
2122
},
@@ -25,6 +26,6 @@
2526
"feather-icons": "^4.29.2",
2627
"spark-md5": "^3.0.2",
2728
"url-parse": "^1.5.10",
28-
"vite": "^7.3.0"
29+
"vite": "^8.0.3"
2930
}
3031
}

yarn.lock

Lines changed: 1441 additions & 739 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)