Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Jul 21, 2023
1 parent 3d59157 commit 06f77a2
Show file tree
Hide file tree
Showing 6 changed files with 212 additions and 210 deletions.
Empty file removed ,
Empty file.
8 changes: 4 additions & 4 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

- uses: supplypike/setup-bin@v3
with:
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.7.0-a7/cr'
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.7.5/cr'
name: 'cr'
version: '0.7.0-a7'
version: '0.7.5'

- uses: supplypike/setup-bin@v3
with:
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.7.0-a7/caps'
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.7.5/caps'
name: 'caps'
version: '0.7.0-a7'
version: '0.7.5'

- name: "compiles to js"
run: >
Expand Down
65 changes: 34 additions & 31 deletions calcit.cirru

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

21 changes: 10 additions & 11 deletions compact.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,9 @@
|*reel $ quote
defatom *reel $ -> reel-schema/reel (assoc :base schema/store) (assoc :store schema/store)
|dispatch! $ quote
defn dispatch! (op op-data)
when
and config/dev? $ not= op :states
println "\"Dispatch:" op
reset! *reel $ reel-updater updater @*reel op op-data
defn dispatch! (op)
when config/dev? $ println "\"Dispatch:" op
reset! *reel $ reel-updater updater @*reel op
|main! $ quote
defn main! () (config/register-languages!)
println "\"Running mode:" $ if config/dev? "\"dev" "\"release"
Expand All @@ -362,7 +360,7 @@
; let
raw $ js/localStorage.getItem (:storage-key config/site)
when (some? raw)
dispatch! :hydrate-storage $ parse-cirru-edn raw
dispatch! $ :: :hydrate-storage (parse-cirru-edn raw)
println "|App started."
|mount-target $ quote
def mount-target $ .!querySelector js/document |.app
Expand Down Expand Up @@ -424,11 +422,12 @@
|docs-workflow.updater $ {}
:defs $ {}
|updater $ quote
defn updater (store op data op-id op-time)
case-default op
do (println "\"unknown op:" op) store
:states $ update-states store data
:hydrate-storage data
defn updater (store op op-id op-time)
tag-match op
:states cursor s
update-states store cursor s
(:hydrate-storage d) d
_ $ do (eprintln "\"unknown op:" op) store
:ns $ quote
ns docs-workflow.updater $ :require
respo.cursor :refer $ update-states
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"version": "0.0.15",
"name": "@calcit/docs-workflow",
"dependencies": {
"@calcit/procs": "^0.7.0-a7"
"@calcit/procs": "^0.7.5"
},
"devDependencies": {
"bottom-tip": "^0.1.5",
"cirru-color": "^0.2.3",
"github-markdown-css": "^5.2.0",
"highlight.js": "^11.8.0",
"remarkable": "^2.0.1",
"vite": "^4.3.9"
"vite": "^4.4.6"
}
}
Loading

0 comments on commit 06f77a2

Please sign in to comment.