Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Nov 4, 2024
1 parent ecea446 commit 3cef2e0
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 14 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: yarn

- uses: calcit-lang/[email protected]
with:
version: "0.8.56"
- uses: calcit-lang/[email protected]

- run: caps --ci && yarn && yarn compile-server && yarn compile-page && yarn release-page

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:
node-version: 20
cache: 'yarn'

- uses: calcit-lang/[email protected]
with:
version: "0.8.56"
- uses: calcit-lang/[email protected]

- run: caps --ci && yarn && yarn compile-server && yarn compile-page && yarn release-page

Expand Down
87 changes: 84 additions & 3 deletions calcit.cirru

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion compact.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,15 @@
, sid
.!on proc "\"error" $ fn (event)
dispatch!
:: :process/error $ [] pid (str event)
:: :process/error $ str-spaced "\"error:"
[] pid $ str event
, sid
; dispatch! (:: :process/finish pid) sid
js/console.error "\"[TERMINA] process error" event
.!on proc "\"disconnect" $ fn (event)
dispatch!
:: :process/error $ [] pid
str-spaced "\"disconntect:" $ str event
, sid
; dispatch! (:: :process/finish pid) sid
js/console.error "\"[TERMINA] process error" event
Expand All @@ -1353,6 +1361,10 @@
:: :process/error $ [] pid (str err &newline origin)
, sid
.!on proc "\"uncaughtException" $ fn (err origin)
dispatch!
:: :process/error $ [] pid (str "\"uncaughtException:" err &newline origin)
, sid
.!on proc "\"unhandledRejection" $ fn (err origin)
dispatch!
:: :process/error $ [] pid (str err &newline origin)
, sid
Expand Down
1 change: 1 addition & 0 deletions deps.cirru
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

{}
:calcit-version |0.9.6
:dependencies $ {}
|calcit-lang/lilac |main
|calcit-lang/memof |main
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"termina": "./server.mjs"
},
"scripts": {
"watch-server": "cr --emit-js",
"compile-server": "cr --emit-js --once",
"compile-page": "cr --emit-js --once --emit-path out-page --entry page",
"watch-server": "cr js",
"compile-server": "cr -1 js",
"compile-page": "cr --entry page --emit-path out-page -1 js",
"release-page": "vite build --base=./",
"watch-page": "cr --emit-js --emit-path out-page/ --entry page"
"watch-page": "cr --entry page --emit-path out-page/ js"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 3cef2e0

Please sign in to comment.