proton

https://github.com/dvcrn/proton
2016-02-11T04:40:40.000636Z

Things seem to be working okay, but I get this error on launch every time.

2016-02-11T07:12:07.000637Z

Another thing - I’m not familiar with the file format of the .proton file (is it clojurescript?) and having a heck of a time trying to translate some configuration stuff. I’m trying to set the colors for terminal-plus and cannot get any translation of this code to work:

"terminal-plus":
  ansiColors:
    normal:
      blue:
        red: 22
        green: 120
        blue: 219
        alpha: 1

geksilla 2016-02-11T10:27:47.000639Z

@jessejanderson .proton file is edn. regarding "terminal-plus" settings you can try

["terminal-plus.ansiColors" {:normal {:red 22 :green 120 :blue 219 :alpha 1}}] 

geksilla 2016-02-11T13:02:29.000640Z

I was trying to add reagent to project dependencies. And got error from atom

Cannot find module 'react'
@thheller, can you please help with this?

geksilla 2016-02-11T13:08:21.000641Z

I've fixed this by adding react and react-dom to package.json

geksilla 2016-02-11T13:09:38.000642Z

looks like these packages don't resolves to lib/cljs-runtime/cljsjs/react

geksilla 2016-02-11T13:10:46.000643Z

Is there any magic how I can resolve modules with shadow-build? :simple_smile:

thheller 2016-02-11T14:05:23.000644Z

uhm

thheller 2016-02-11T14:06:06.000645Z

@geksilla: what are you trying to do? don't quite understand. package.json is not something shadow-build works with or requires

thheller 2016-02-11T14:06:55.000646Z

if you require the normal react or react-dom packages I'd advise not using the cljsjs versions

geksilla 2016-02-11T16:46:08.000648Z

I'm trying to use reagent with proton

geksilla 2016-02-11T16:46:31.000649Z

I've added it :dependencies project.clj

geksilla 2016-02-11T16:46:51.000650Z

then run dev-repl

geksilla 2016-02-11T16:47:37.000651Z

restarted atom and it loads with error message regarding react

2016-02-11T17:00:16.000652Z

@geksilla: ah ha! Thanks, that format worked.

2016-02-11T17:00:35.000653Z

Anyone have ideas about this? https://clojurians.slack.com/archives/proton/p1455165331000635

geksilla 2016-02-11T17:19:49.000655Z

your proto-repl package installed manually or via proton?

geksilla 2016-02-11T17:20:42.000657Z

anyway to fix this

(cd ~/.atom/packages/proto-repl && apm install)

geksilla 2016-02-11T17:21:06.000658Z

somehow dependencies not installed for proto-repl

2016-02-11T17:46:21.000659Z

ahh - thanks! via Proton but i guess it didn’t work somehow

dvcrn 2016-02-11T23:51:51.000660Z

hrmm but proton basically runs apm install xxx