-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add checkouts source directories to the classpath - Add checkouts source directories to :source-paths Fixes #9
- Loading branch information
1 parent
8f936b6
commit 013ba71
Showing
14 changed files
with
205 additions
and
23 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
target/ |
11 changes: 11 additions & 0 deletions
11
plugin/test-resources/test-project-no-checkouts/project.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,11 @@ | ||
(defproject test-project-no-checkouts "1.0.0" | ||
:description "A test project for testing Figwheel when there are no checkouts." | ||
:dependencies [[org.clojure/clojure "1.9.0-alpha15"] | ||
[org.clojure/clojurescript "1.9.908"]] | ||
:source-paths ["src"] | ||
:cljsbuild {:builds {:dev {:source-paths ["src"] | ||
:compiler {:main core | ||
:asset-path "js/out" | ||
:output-to "resources/public/js/example.js" | ||
:output-dir "resources/public/js/out" | ||
:optimizations :none}}}}) |
3 changes: 3 additions & 0 deletions
3
plugin/test-resources/test-project-no-checkouts/src/core.cljs
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,3 @@ | ||
(ns core) | ||
|
||
;; Intentionally left blank |
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 @@ | ||
target/ |
1 change: 1 addition & 0 deletions
1
plugin/test-resources/test-project-with-checkouts/checkouts/utils-lib
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 @@ | ||
../../utils-lib/ |
11 changes: 11 additions & 0 deletions
11
plugin/test-resources/test-project-with-checkouts/project.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,11 @@ | ||
(defproject test-project-with-checkouts "1.0.0" | ||
:description "A test project for testing Figwheel with checkouts." | ||
:dependencies [[org.clojure/clojure "1.9.0-alpha15"] | ||
[org.clojure/clojurescript "1.9.908"]] | ||
:source-paths ["src"] | ||
:cljsbuild {:builds {:dev {:source-paths ["src"] | ||
:compiler {:main core | ||
:asset-path "js/out" | ||
:output-to "resources/public/js/example.js" | ||
:output-dir "resources/public/js/out" | ||
:optimizations :none}}}}) |
3 changes: 3 additions & 0 deletions
3
plugin/test-resources/test-project-with-checkouts/src/core.cljs
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,3 @@ | ||
(ns core) | ||
|
||
;; Intentionally left blank |
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 @@ | ||
target/ |
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,11 @@ | ||
(defproject utils-lib "1.0.0" | ||
:description "A test project to be consumed as a checkouts project." | ||
:dependencies [[org.clojure/clojure "1.9.0-alpha15"] | ||
[org.clojure/clojurescript "1.9.908"]] | ||
:source-paths ["src"] | ||
:cljsbuild {:builds {:dev {:source-paths ["src"] | ||
:compiler {:main utils | ||
:asset-path "js/out" | ||
:output-to "resources/public/js/example.js" | ||
:output-dir "resources/public/js/out" | ||
:optimizations :none}}}}) |
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,3 @@ | ||
(ns utils) | ||
|
||
;; Intentionally left blank |
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