This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-10
Channels
- # announcements (4)
- # beginners (116)
- # boot (4)
- # calva (63)
- # cider (8)
- # clara (20)
- # cljdoc (10)
- # cljsrn (69)
- # clojure (115)
- # clojure-austin (1)
- # clojure-dev (4)
- # clojure-finland (1)
- # clojure-italy (3)
- # clojure-nl (6)
- # clojure-russia (10)
- # clojure-uk (84)
- # clojurescript (28)
- # cursive (14)
- # data-science (1)
- # datascript (1)
- # datomic (11)
- # duct (3)
- # emacs (13)
- # figwheel-main (11)
- # fulcro (4)
- # graphql (6)
- # jackdaw (2)
- # jobs (23)
- # jobs-rus (1)
- # kaocha (11)
- # lein-figwheel (13)
- # leiningen (55)
- # luminus (14)
- # lumo (22)
- # off-topic (121)
- # pathom (19)
- # re-frame (6)
- # reagent (3)
- # reitit (22)
- # remote-jobs (10)
- # ring-swagger (1)
- # shadow-cljs (67)
- # slack-help (5)
- # spacemacs (1)
- # sql (18)
- # vim (28)
- # yada (2)
@hlolli heads up I’m making a Lumo release today
if you wanna package it up for Nix 🙂
@anmonteiro wish I had a macos to fix the problem you were having as well.
I can’t remember what it was
but to set expectations: I don’t plan on finding out or fixing 😛
this release was already very painful as it is
should be straightforward
the build process is exactly the same
was painful because I chose to upgrade to the latest Node (11.13)
ah no, still experimental https://nodejs.org/api/worker_threads.html
Hi all,
I'm trying to get lumo working with transit-cljs, which depends on transit-js. I can't solve it, it keeps on failing when I run it with:
Error: Undefined nameToPath for com.cognitect.transit
I tried:
- Listing the two jars as --dependencies
- Listing the two jars as --classpath
- Unpacking the jars and including them in (b/build)
The Makefile here shows what I've tried: https://github.com/danieroux/lumo-poc/blob/master/Makefile
Can someone help me to get this running?
lumo --classpath src:libs/com/cognitect/transit-js/0.8.846/transit-js-0.8.846.jar:libs/com/cognitect/transit-cljs/0.8.256/transit-cljs-0.8.256.jar build.cljs
looks about right (with quotes in the bash ofc)
did you try requireing cognitect.transit-js in the root, so that it's defenitely included in the final js. But this looks like a bug to me.
@danietransit.js says goog.provide("com.cognitect.transit")
, so something like this?
(ns tech.matterindustries.titan.gateway.core
(:require [fs]
[cognitect.transit :as t]
[com.cognitect.transit]))
I still have the same problem then.transit should already be included inside the lumo binary though
lumo --classpath src build.cljs
with the same requires gets me the same error message 😕
I wonder if that’s part of the problem
transit.js says goog.provide("com.cognitect.transit")
, so something like this?
(ns tech.matterindustries.titan.gateway.core
(:require [fs]
[cognitect.transit :as t]
[com.cognitect.transit]))
I still have the same problem then.lumo --classpath src build.cljs
with the same requires gets me the same error message 😕
yeah it could be a bug
I’m not gonna look into it any time soon, but feel free to open an issue