We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requirements: most recent versions of boot and planck must be installed.
Script to run specter with Planck:
#!/usr/bin/env bash echo "Example: (transform (s/walker number?) inc {:a {:b 2} :c 1})" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" CP_FILE=$DIR/.classpath if [ ! -f $CP_FILE ]; then boot --dependencies org.clojars.micha/boot-cp \ --dependencies com.rpl/specter:"0.11.2" \ with-cp -w --file $CP_FILE fi CACHE_DIR=$DIR/.planck_cache mkdir -p $CACHE_DIR planck --cache=$CACHE_DIR -c `cat $CP_FILE` -e "(require '[com.rpl.specter :as s])" -e "(require-macros '[com.rpl.specter.macros :refer [select transform]])" -r
Run the script to trigger the error:
./specter-cljs Example: (transform (walker number?) inc {:a {:b 2} :c 1}) Planck 1.15 ClojureScript 1.9.76 Docs: (doc function-name-here) (find-doc "part-of-name-here") Source: (source function-name-here) Exit: Control+D or :cljs/quit or exit or quit Results: Stored in vars *1, *2, *3, an exception in *e cljs.user=> (transform (s/walker number?) inc {:a {:b 2} :c 1}) ⬆ Maximum call stack size exceeded. at line 1
The text was updated successfully, but these errors were encountered:
I had an error as well but then noticed #72. I guess full bootstrap support is not there yet
Sorry, something went wrong.
No branches or pull requests
Requirements: most recent versions of boot and planck must be installed.
Script to run specter with Planck:
Run the script to trigger the error:
The text was updated successfully, but these errors were encountered: