Skip to content

Commit

Permalink
fixing windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Dec 18, 2014
1 parent f430069 commit 4acc93b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
13 changes: 5 additions & 8 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
* look at cljs.test plugin for client
- going to require an eval to do what I want

* ### look at repl integration

* add basic autobuilding loop to clojurescript-build

* clean up example and template to have basic dev pattern
Expand All @@ -11,14 +14,8 @@
* clean up parameter passing
* look at subproject leiningen cljsbuild code and see whats needed

* dynamic env for figwheel.core
* dynamic *env* for figwheel.core
* create seperate feature testing projects

* html change causes refresh
* html change to cause refresh
* clean from browser is a big win
##### completed
* resource paths? better way to handle it eh?
* shouldn't reload everything on clj file changes now
* seperate project / namespace for client
* reload-non-macro-clj-files flag
* cljs.closure.api
4 changes: 0 additions & 4 deletions sidecar/src/figwheel_sidecar/auto_builder.clj
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
compiler-env (cljs.env/default-compiler-env build-options)]
(reset! server-kill-switch (:http-server figwheel-state'))

#_(p/pprint src-dirs)
#_(p/pprint build-options)
#_(p/pprint figwheel-options)

(loop [dependency-mtimes {}]
(let [new-mtimes (get-dependency-mtimes src-dirs build-options)]
(when (not= dependency-mtimes new-mtimes)
Expand Down
2 changes: 1 addition & 1 deletion sidecar/src/figwheel_sidecar/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
This is a path that a client can request. A caveat is that only works on
compiled javascript namespaces."
[{:keys [output-dir] :as state} ns]
(let [path (.getPath (bapi/cljs-target-file-from-ns output-dir ns))]
(let [path (norm-path (.getPath (bapi/cljs-target-file-from-ns output-dir ns)))]
(remove-resource-path state path)))

(defn make-serve-from-display [{:keys [http-server-root] :as opts}]
Expand Down

0 comments on commit 4acc93b

Please sign in to comment.