I have installed the new vue-cli 3 using instructions on their website
npm install -g @vue/cli
I try to check what version I have:
vue --help
(according to their documentation this command should work)
but I get
cd: string not in pwd: /home/jedrek/workspace/VueJS
I removed the old version:
npm uninstall vue-cli -g
Reinstalled the new one and I still the same issue.
I can't even generate any project, I am getting too many arguments
error
vue init webpack-simple my_app #=> cd: too many arguments
I have checked for system aliases in my zsh but I didn't find any I don't recall setting any.
What do I miss?