This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-01-04
Channels
- # architecture (13)
- # bangalore-clj (1)
- # beginners (174)
- # boot (25)
- # cider (65)
- # cljs-dev (10)
- # cljsjs (4)
- # cljsrn (3)
- # clojure (169)
- # clojure-berlin (27)
- # clojure-brasil (32)
- # clojure-greece (3)
- # clojure-russia (31)
- # clojure-sg (4)
- # clojure-spec (6)
- # clojure-uk (74)
- # clojurescript (186)
- # code-reviews (5)
- # css (12)
- # cursive (17)
- # datascript (1)
- # datomic (45)
- # dirac (33)
- # funcool (42)
- # hoplon (25)
- # jobs (6)
- # jobs-discuss (114)
- # lambdaisland (6)
- # leiningen (1)
- # luminus (24)
- # off-topic (86)
- # om (13)
- # om-next (14)
- # onyx (75)
- # perun (2)
- # protorepl (19)
- # re-frame (2)
- # reagent (17)
- # ring-swagger (2)
- # rum (1)
- # slack-help (2)
- # specter (31)
- # test-check (5)
- # timbre (1)
- # untangled (34)
- # vim (8)
Is there a way to treat a build.boot file as a Clojure one?
So I can get syntax highlighting and paredit
@danielcompton Currently it’s a bit nasty - I think you have to map .boot
files to Clojure, and then put build.boot
inside a source root and symlink it to the root of the project.
Cool, that's in Preferences > Editor > File Types for anyone else following along
@cfleming how can I renew my license? I looked it up and have purchased a commercial license on 2015-12-10 but didn't receive a request for renewal?
If I try to create a run configuration for my frontend app, it fails unless I launch it as a regular JVM process. I tried configuring it as a leiningen project like so:
Run
-> Run...
Clojure REPL
-> Local
Run nREPL with Leiningen
Project: <myproject:0.1.0-SNAPSHOT
Profile: base,dev
Parameters: dev/repl.clj
No environment variables set, working dir cannot be changed (but is set to the root of the source code directory).
I get the following error out of that...
http://paste.ubuntu.com/23738026/
@stijn You’ll be able to soon - I extended the current update period to 10 Jan for anyone whose licence period ended earlier than that: https://cursive-ide.com/archive/2217.html
Basically, for non-work reasons I didn’t have the renewal functionality done - I’m just finishing it off now.
@pseud That’s odd. cljsbuild is not on your classpath. I’m not sure it should be though - is it there if you do lein classpath
?
Does your dev/repl.clj
invoke it somehow, and pull in that dep using some lein mechanism?
True enough, lein classpath |grep cljsb
didn't return anything (had to grep as the regular input was a large, unreadable block of text
@pseud So the question is, why is the REPL trying to find it? I’m not sure about that. You could try debugging the process and breaking on FileNotFoundException, and looking up the stack frames to see which namespace it’s trying to load.