This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-30
Channels
- # announcements (2)
- # bangalore-clj (6)
- # beginners (33)
- # cider (4)
- # clojure (9)
- # clojure-brasil (2)
- # clojure-spec (6)
- # clojurescript (36)
- # cursive (13)
- # datomic (3)
- # emacs (1)
- # fulcro (6)
- # graalvm (2)
- # interop (4)
- # luminus (1)
- # midje (1)
- # pathom (1)
- # random (1)
- # reagent (4)
- # shadow-cljs (11)
- # tools-deps (42)
- # xtdb (10)
@thheller I installed the Calva extension for VScode but never ran any REPL through the ide itself. Only connecting to the project via browser.
im going to try running one of the example projects in the repo and see if i get the same results
Hi I want to ask a question regarding the abandoned foreign-libs in shadow (sorry I am just setting things up with shadow so I am a very new user). I am trying to switch from figwheel to shadow and in my project I am using the monaco editor. Right now I have set up a webpack project just to import monaco and do some language configuration stuff. Then in my cljs project I just use foreign-libs with the usual global-exports option. How should I go about this in shadow?
@gerry I recommend just including the webpack generated code separately via its own script tag and accessing the globals it exports normally via (js/thatGlobal.foo.bar)
assuming the monaco-editor still has its weird own packaging style that shadow-cljs can't process
Ok I see.. Yeah it still has this weird packaging. I wanted to include it via cljs in order for the closure compiler to do its magic and have an optimized build. There is no other way around it right?