anko / eslisp

un-opinionated S-expression syntax and macro system for JavaScript
ISC License
528 stars 31 forks source link

Error on fresh install: Cannot find module 'concat-stream' #58

Closed branneman closed 3 years ago

branneman commented 3 years ago

Steps to reproduce:

mkdir esl
cd esl
npm init -y
npm i eslisp
echo '((. console log) "Yo!")' | npx eslc

Output:

Cannot find module 'concat-stream'

Workaround:

npm i concat-stream

Potential fix: this seems like a simple missing dependency, which should just be added to the package.json.

anko commented 3 years ago

Oops.

It's in devDependencies, so the tests are passing. But it should be in dependencies, so the package would work.

anko commented 3 years ago

Published in v0.8.2.

branneman commented 3 years ago

:tada: