Command not found
chrismademe opened this issue · 3 comments
chrismademe commented
After running npm install goron
in my project directory and then creating a goron.config.js
in the root, I'm unable to run the goron
command, I just get command not found
.
I've tested this on MacOS Mojave and Windows 10 both with the same result.
I am able to run Goron if I open the index.js
directly though.
Andy-set-studio commented
Hey Chris,
Have you tried installing goron like this?
npm install goron -g
The global install should add it to your path.
I normally run goron as part of an npm script, so I _think_ that runs local
dependencies, whereas CLI uses stuff from the path.
…On Fri, 14 Feb 2020 at 15:37, Chris ***@***.***> wrote:
After running npm install goron in my project directory and then creating
a goron.config.js in the root, I'm unable to run the goron command, I
just get command not found.
I've tested this on MacOS Mojave and Windows 10 both with the same result.
I am able to run Goron if I open the index.js directly though.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCFKRYFIU73GIMEZS5DPUTRC23DDANCNFSM4KVKPQUA>
.
chrismademe commented
That did the trick, thanks!
Andy-set-studio commented
Excellent :)