stardiviner
stardiviner
I removed system Electron, and delete `node_modules/electron`. Then execute command `npm install again`. It gets stucked on installing. ``` $ npm install > [email protected] postinstall /home/stardiviner/myapp/node_modules/electron > node install.js ```...
The problem solved. Sorry about disturb.
Problem solved, I manually added `react` and `react-dom` dependencies into `deps.edn` fixed this error. Hope this can be added to `electron-app` template in future.
Now the `deps.edn` is: ```clojure :deps {org.clojure/clojure {:mvn/version "1.10.1"} org.clojure/clojurescript {:mvn/version "1.10.597"} com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"} com.bhauman/figwheel-main {:mvn/version "0.2.3"} reagent {:mvn/version "0.9.0-rc3" :exclusions [cljsjs/react cljsjs/react-dom]} cljsjs/react {:mvn/version "16.11.0-0"} cljsjs/react-dom {:mvn/version "16.11.0-0"}}...
I only have this config in `~/.npmrc` ``` editor=emacsclient registry=https://registry.npm.taobao.org disturl=https://npm.taobao.org/mirrors/node ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron ```
This is interesting usage of ob-async. I used this `:var` in non-ob-async case. I guess this is not easy to implement.
Seems the CI build check timeout?
This patch seems break ob-async function. Somebody have any idea to improve it?
Gentle ping ...
Here is my config code try to auto execute Org Mode "EVAL" property's value. ```elisp ;;; auto evaluate inline source block in property "EVAL". (defcustom org-property-eval-keywords-list '("EVAL") "A list of...