scittle

borkdude 2025-08-28T12:53:11.365659Z

@chris358 the new global refer syntax in CLJS is probably going to be:

(:refer-global :only [Date] :rename {Date D})
Once this is finalized in CLJS I'll add it to SCI and then we can drop the custom :load-fn again (would be breaking but it's in since only one version so might be ok)

👍 2
borkdude 2025-08-28T12:53:34.087929Z

See #cljs-dev for discussion

Chris McCormick 2025-08-28T12:56:01.675769Z

Oh wow, cool this finally got settled.

Chris McCormick 2025-08-28T15:01:12.484259Z

One thing that is good about having the plain old ["blah" :as blah] syntax in Scittle is my code can look exactly the same wherever it is running. So shadow-cljs can pull "blah" in from node_modules, as can nbb, and scittle can pull it in from the globalThis/script tag. That actually suits me well since I want to have it compile in on shadow, pulled in on nbb, and referenced from the script tag in scittle. With the new syntax I'm going to have to fiddle around a lot more. 😬

🐑 1