Merge branch 'main' into fix-prod-clean
This commit is contained in:
commit
e5b1eca5fb
2 changed files with 5 additions and 2 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
<!-- - Create Github release with updated links from `doc/links.md` -->
|
<!-- - Create Github release with updated links from `doc/links.md` -->
|
||||||
<!-- - `bb gh-pages` -->
|
<!-- - `bb gh-pages` -->
|
||||||
|
|
||||||
|
- [#89](https://github.com/babashka/babashka/issues/89): allow `evaluate_script_tags` to specify individual scripts.
|
||||||
- [#87](https://github.com/babashka/scittle/issues/87): prod build on fresh checkout fails
|
- [#87](https://github.com/babashka/scittle/issues/87): prod build on fresh checkout fails
|
||||||
|
|
||||||
## v0.6.19 (2024-10-08)
|
## v0.6.19 (2024-10-08)
|
||||||
|
|
|
||||||
|
|
@ -103,8 +103,10 @@
|
||||||
(eval-script-tags* (rest script-tags)))
|
(eval-script-tags* (rest script-tags)))
|
||||||
(eval-script-tags* (rest script-tags))))))
|
(eval-script-tags* (rest script-tags))))))
|
||||||
|
|
||||||
(defn ^:export eval-script-tags []
|
(defn ^:export eval-script-tags [& script-tags]
|
||||||
(let [script-tags (.querySelectorAll doc "script[type='application/x-scittle']")]
|
(let [script-tags (or script-tags
|
||||||
|
(.querySelectorAll
|
||||||
|
doc "script[type='application/x-scittle']"))]
|
||||||
(eval-script-tags* script-tags)))
|
(eval-script-tags* script-tags)))
|
||||||
|
|
||||||
(def auto-load-disabled? (volatile! false))
|
(def auto-load-disabled? (volatile! false))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue