Paul Whittington

Results 16 issues of Paul Whittington

Hey @bhauman, thank you for all the effort you've invested in figwheel-main! It is fantastic ;) I'm trying to follow the instructions here https://figwheel.org/docs/testing.html#running-tests-in-a-headless-environment, but **the command line test execution...

The following code: ```clojure (ns leapyears.test.main (:require [cljs.test :as t] [leapyears.vendor.util-closure :as util])) ``` should be: ```clojure (ns leapyears.test.main (:require [cljs.test :as t] [leapyears.util :as util])) ```

The following Clojure code: ```clojure (assoc build-opts :main 'leapyears.test.main :output-to "out/tests.js" :output-dir "out/tests" :target :nodejs) ``` needs to be: ```clojure (assoc build-opts :main 'leapyears.test.main :output-to "out/tests.js" :output-dir "out/tests" :asset-path "out/tests"...

The text "clojure tools build:tests" should be "clojure tools.clj build:tests"

I needed to ad the following line of text to the tools.clj file, in addition to the ones noted in the document: ```clojure (require '[figwheel.main :as figwheel]) ```

The text "This is how looks the deps.edn file with the changes applied:" should be "This is how looks the tools.clj file with the changes applied:"

In order to create what I believe to be the intended behavior I needed to make the definition of the "on-change" function the following: ```clojure (defn on-change [event] (let [target...

In order to get the code to work correctly, I needed to add: :asset-path "js/leapyears"

bug

From within an application directory, executing the following command: ```bash ../bin/onejar -A:prod project.jar ``` results in the following output: ```bash WARNING: When invoking clojure.main, use -M Execution error (FileNotFoundException) at...

This is one of three PRs for adding an 'uberscript' capability to Edge.