We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8ad16 commit cae4792Copy full SHA for cae4792
src/main/clojure/cljs/closure.clj
@@ -64,7 +64,9 @@
64
(defn- gitlibs-src?
65
"Returns true if the file comes from the gitlibs cache."
66
[file]
67
- (string/starts-with? (util/path file) (gitlibs-cache-dir)))
+ #_(string/starts-with? (util/path file) (gitlibs-cache-dir))
68
+ ;; NOTE: does not work on first build see CLJS-2765
69
+ false)
70
71
(def name-chars (map char (concat (range 48 57) (range 65 90) (range 97 122))))
72
0 commit comments