Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions 2022/12-reactflow/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
node_modules/
public/js

/target
/checkouts
/src/gen

pom.xml
pom.xml.asc
*.iml
*.jar
*.log
.shadow-cljs
.idea
.lein-*
.nrepl-*
.DS_Store

.hgignore
.hg/
2 changes: 2 additions & 0 deletions 2022/12-reactflow/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shadow: npm run dev
tailwind: npx tailwindcss -i ./src/input.css -o ./public/output.css --watch
6 changes: 6 additions & 0 deletions 2022/12-reactflow/deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{:paths ["src/dev" "src/main" "src/test"]
:deps {thheller/shadow-cljs {:mvn/version "2.20.13"}
re-frame/re-frame {:mvn/version "1.3.0"}
io.github.rgm/tailwind-hiccup {:git/url "https://github.com/rgm/tailwind-hiccup"
:git/sha "dfd6c5198ebe5c85eac5d6b31c17032fd041b99d"}
cljs-bean/cljs-bean {:mvn/version "1.9.0"}}}
Loading