nrepl / piggieback

nREPL support for ClojureScript REPLs
480 stars 48 forks source link

Syntax error macroexpanding clojure.core/ns at (base64_vlq.clj:1:1). #103

Closed farzana-tarannum closed 5 years ago

farzana-tarannum commented 5 years ago

Hello I am getting following error -

input -

clj -A:reble

[Rebel readline] Type :repl/help for online help info user=> (require 'cider.piggieback)

output:

WARNING: boolean? already refers to: #'clojure.core/boolean? in namespace: cljs.util, being replaced by: #'cljs.util/boolean? Syntax error macroexpanding clojure.core/ns at (base64_vlq.clj:1:1). ((require [clojure.string :as string] [cljs.source-map.base64 :as base64])) - failed: Extra input spec: :clojure.core.specs.alpha/ns-form

my deps.edn is -

{:deps {clj-time {:mvn/version "0.14.2"} nrepl {:mvn/version "0.6.0"} cider/piggieback {:mvn/version "0.4.1-SNAPSHOT"}} :aliases {:reble {:extra-deps {:com.bhauman/rebel-readline {:mvn/version "0.1.4"}} :main-opts ["-m" "rebel-readline.main"]}}}

My devs environment:

Linux arch 4.20.13-arch1-1-ARCH #1 SMP PREEMPT Wed Feb 27 19:10:28 UTC 2019 x86_64 GNU/Linux

tools.deps versio: linux-install-1.10.0.414.sh

I have tried with cider/piggieback 0.4.0 and getting same error.

SevereOverfl0w commented 5 years ago

Looks like a :require vs require in base64_vlq.clj but I'm not sure what that is.

cichli commented 5 years ago

This was fixed in clojure/clojurescript@48b83d900dc46e912fcefc2365f806f5c8c15dfe – could you try upgrading your ClojureScript version?

farzana-tarannum commented 5 years ago

thanks, fixed after updating clojuresript to lastest version.