-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60ead92
commit 638d820
Showing
41 changed files
with
3,148 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
(defproject re-frisk "1.4.0" | ||
(defproject re-frisk "1.5.0" | ||
:description "Take full control of re-frame app" | ||
:url "https://github.com/flexsurfer/re-frisk" | ||
:license {:name "MIT" | ||
:url "https://opensource.org/licenses/MIT"} | ||
:source-paths ["src"] | ||
:plugins [[thomasa/mranderson "0.5.3"]] | ||
:profiles {:mranderson {:mranderson {:project-prefix "re-frisk.inlined-deps"} | ||
:dependencies ^:replace [^:source-dep [reagent "1.0.0" | ||
:exclusions [cljsjs/react | ||
cljsjs/react-dom | ||
cljsjs/react-dom-server]]]}} | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
[org.clojure/clojurescript "1.10.597"] | ||
[reagent "0.10.0"] | ||
[re-frame "0.12.0"] | ||
[re-com "2.8.0"]]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
re-frisk/src/re_frisk/inlined_deps/reagent/v1v0v0/reagent/core.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
(ns ^{:mranderson/inlined true} re-frisk.inlined-deps.reagent.v1v0v0.reagent.core | ||
(:require [re-frisk.inlined-deps.reagent.v1v0v0.reagent.ratom :as ra])) | ||
|
||
(defmacro with-let | ||
"Bind variables as with let, except that when used in a component | ||
the bindings are only evaluated once. Also takes an optional finally | ||
clause at the end, that is executed when the component is | ||
destroyed." | ||
[bindings & body] | ||
`(ra/with-let ~bindings ~@body)) |
Oops, something went wrong.