(build-once & build-ids)
Forces a single compile of the provided build ids.
Forces a single compile of the provided build ids.
(clean & build-ids)
Takes one or more builds ids and deletes their compiled artifacts.
Takes one or more builds ids and deletes their compiled artifacts.
(config-ansi-color-output! {:keys [:figwheel.main/config] :as cfg})
(config-connect-url {:keys [:figwheel.main/config repl-env-options] :as cfg}
connect-id)
(config-log-syntax-error-style! {:keys [:figwheel.main/config] :as cfg})
(config-open-file-command {:keys [:figwheel.main/config options] :as cfg})
(config-repl-connect {:keys [:figwheel.main/config options :figwheel.main/build]
:as cfg})
(figure-default-asset-path {:keys [figwheel-options options
:figwheel.main/config :figwheel.main/build]
:as cfg})
(get-repl-env-options {:keys [repl-env-options :figwheel.main/config options]
:as cfg})
(reset & build-ids)
If no args are provided, all current builds will be cleaned and restarted. Otherwise, this will clean and restart the provided build ids.
If no args are provided, all current builds will be cleaned and restarted. Otherwise, this will clean and restart the provided build ids.
(start & args)
Starts Figwheel.
Example:
(start "dev") ;; will look up the configuration from figwheel-main.edn ;; and dev.cljs.edn
With inline build config: (start {:id "dev" :options {:main 'example.core}})
With inline figwheel config: (start {:css-dirs ["resources/public/css"]} "dev")
With inline figwheel and build config: (start {:css-dirs ["resources/public/css"]} {:id "dev" :options {:main 'example.core}})
If you don't want to launch a REPL: (start {:css-dirs ["resources/public/css"] :mode :serve} {:id "dev" :options {:main 'example.core}})
Starts Figwheel. Example: (start "dev") ;; will look up the configuration from figwheel-main.edn ;; and dev.cljs.edn With inline build config: (start {:id "dev" :options {:main 'example.core}}) With inline figwheel config: (start {:css-dirs ["resources/public/css"]} "dev") With inline figwheel and build config: (start {:css-dirs ["resources/public/css"]} {:id "dev" :options {:main 'example.core}}) If you don't want to launch a REPL: (start {:css-dirs ["resources/public/css"] :mode :serve} {:id "dev" :options {:main 'example.core}})
(start* join-server? build)
(start* join-server? figwheel-options build & background-builds)
(start-background-builds {:keys [:figwheel.main/background-builds] :as cfg})
(start-builds & build-ids)
Takes one or more build names and starts them building.
Takes one or more build names and starts them building.
(start-join & args)
Starts figwheel and blocks, useful when starting figwheel as a
server only i.e. :mode :serve
from a script.
Starts figwheel and blocks, useful when starting figwheel as a server only i.e. `:mode :serve` from a script.
(status)
Displays the build ids of the builds are currently being watched and compiled.
Displays the build ids of the builds are currently being watched and compiled.
(stop-builds & build-ids)
Takes one or more build ids and stops watching and compiling them.
Takes one or more build ids and stops watching and compiling them.
(validate-fix-target-classpath! {:keys [:figwheel.main/config
:figwheel.main/build options]})
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close