Skip to content

Commit

Permalink
upgrade packages and refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sprocketc committed Oct 24, 2023
1 parent cc37b6c commit 6b57799
Show file tree
Hide file tree
Showing 318 changed files with 21,885 additions and 9,054 deletions.
1 change: 1 addition & 0 deletions .clj-kondo/config.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{:linters {:clojure-lsp/unused-public-var {:exclude [user]}}}
2 changes: 2 additions & 0 deletions .clj-kondo/metosin/malli/config.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{:lint-as {malli.experimental/defn schema.core/defn}
:linters {:unresolved-symbol {:exclude [(malli.core/=>)]}}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/.cpcache/
/.lsp/
/resources/public/js/
/resources/public/css/**/*.css
/resources/public/src/
/resources/*.js
/target/
Expand Down
17 changes: 8 additions & 9 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{:paths ["src" "test"]
:deps {thheller/shadow-cljs {:mvn/version "2.19.8"}
:deps {thheller/shadow-cljs {:mvn/version "2.25.4"}
metosin/malli {:mvn/version "0.13.0"}
reagent/reagent {:mvn/version "1.1.1"}
re-frame/re-frame {:mvn/version "1.3.0-rc3"}
day8.re-frame/re-frame-10x {:mvn/version "1.4.1"}
re-frame/re-frame {:mvn/version "1.3.0"}
day8.re-frame/re-frame-10x {:mvn/version "1.6.0"}
day8.re-frame/tracing {:mvn/version "0.6.2"}
cljs-ajax/cljs-ajax {:mvn/version "0.8.4"}
de-dupe/de-dupe {:git/url "https://github.com/day8/de-dupe.git"
:sha "932a03e1c12f8690ce753b2fe639719a7fe5072f"
:deps/manifest :deps}
day8/shadow-git-inject {:mvn/version "0.0.5"}
garden/garden {:mvn/version "1.3.10"}
stylefy/stylefy {:mvn/version "3.2.0"}
stylefy/reagent {:mvn/version "3.0.0"}
re-pressed/re-pressed {:mvn/version "0.3.2"}
binaryage/devtools {:mvn/version "1.0.6"}
net.mikera/core.matrix {:mvn/version "0.62.0"}
binaryage/devtools {:mvn/version "1.0.7"}
net.mikera/core.matrix {:mvn/version "0.63.0"}
com.cognitect/transit-cljs {:mvn/version "0.8.280"}
replumb/replumb {:mvn/version "0.2.4"}}}
replumb/replumb {:mvn/version "0.2.4"}
org.slf4j/slf4j-simple {:mvn/version "2.0.6"}}}
9 changes: 9 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@import 'tailwindcss/base.css';
@import 'tailwindcss/components.css';
@import 'tailwindcss/utilities.css';

@import "codemirror/lib/codemirror.css";
@import "codemirror/addon/hint/show-hint.css";
@import "codemirror/theme/tomorrow-night-eighties.css";

@import-glob "src/renderer/**/*.css";
Loading

0 comments on commit 6b57799

Please sign in to comment.