Skip to content

Commit

Permalink
add a version field; alpha release
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Dec 1, 2020
1 parent 88f8e37 commit 57cc6fa
Show file tree
Hide file tree
Showing 5 changed files with 400 additions and 387 deletions.
13 changes: 12 additions & 1 deletion calcit.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -13643,6 +13643,10 @@
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1596297332084) (:text |:compact-output?)
|j $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1599733023435) (:text |false)
|yv $ {} (:type :expr) (:by |S1lNv50FW) (:at 1606792813181)
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606792814880) (:text |:version)
|j $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606792816936) (:text "|\"0.0.1")
|user $ {} (:type :expr) (:at 1504777570689)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1504777570689) (:text |def)
Expand Down Expand Up @@ -22136,6 +22140,13 @@
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606286829014) (:text |:modules)
|j $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606286831681) (:text |configs)
|v $ {} (:type :expr) (:by |S1lNv50FW) (:at 1606792829464)
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606792830583) (:text |:version)
|j $ {} (:type :expr) (:by |S1lNv50FW) (:at 1606792831019)
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606792832167) (:text |:version)
|j $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1606792833074) (:text |configs)
|j $ {} (:type :expr) (:by |S1lNv50FW) (:at 1596336845843)
:data $ {}
|T $ {} (:type :leaf) (:by |S1lNv50FW) (:at 1596336850628) (:text |inc-data)
Expand Down Expand Up @@ -36463,4 +36474,4 @@
|j $ {} (:type :leaf) (:by |root) (:at 1504777570689) (:text |render-loop!)
|r $ {} (:type :leaf) (:by |root) (:at 1511497291704) (:text |20)
:proc $ {} (:type :expr) (:at 1504777570689) (:data $ {})
:configs $ {} (:storage-key |calcit.edn) (:extension |.cljs) (:output |src) (:port 6001)
:configs $ {} (:storage-key |calcit.edn) (:extension |.cljs) (:output |src) (:port 6001) (:modules ([])) :version |0.0.2
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "calcit-editor",
"version": "0.5.18",
"version": "0.5.19-a1",
"description": "Cirru Calcit Editor",
"bin": {
"calcit-editor": "dist/server.js",
Expand All @@ -23,7 +23,7 @@
"license": "MIT",
"devDependencies": {
"feather-icons": "^4.28.0",
"shadow-cljs": "^2.11.7",
"shadow-cljs": "^2.11.8",
"source-map-support": "^0.5.19",
"url-parse": "^1.4.7"
},
Expand Down
3 changes: 2 additions & 1 deletion src/app/schema.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
:compact-output? false,
:init-fn "app.main/main!",
:reload-fn "app.main/reload!",
:modules []})
:modules [],
:version "0.0.1"})

(def ir-file {:package "app", :files {}})

Expand Down
3 changes: 2 additions & 1 deletion src/app/util/compile.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
(let [compact-data {:package pkg,
:configs {:init-fn (:init-fn configs),
:reload-fn (:reload-fn configs),
:modules (:modules configs)},
:modules (:modules configs),
:version (:version configs)},
:files (->> new-files
(map (fn [[ns-text file]] [ns-text (file->cirru file)]))
(into {}))}
Expand Down
Loading

0 comments on commit 57cc6fa

Please sign in to comment.