multiplegeorges / vue-cli-plugin-s3-deploy

A vue-cli plugin that uploads your built Vue.js project to an S3 bucket
MIT License
331 stars 51 forks source link

After running, vue invoke s3-deploy, command not found: vue #140

Closed robjewell-ibotta closed 3 years ago

robjewell-ibotta commented 3 years ago

I'm probably doing something very silly but for some reason when I run vue invoke s3-deploy my shell returns:

zsh: command not found: vue

This is my project. I was able to get it deployed to my s3 bucket by just invoking vue-cli-service s3-deploy. However it would be great to be able to follow this project's readme and succeed in calling vue invoke s3-deploy from my shell. Does anyone know what I am doing wrong?

robjewell-ibotta commented 3 years ago

Ok to fix this issue I had to run the following:

$ npm install -g @vue/cli
$ yarn global add @vue/cli

This is not an issue with vue-cli-plugin-s3-deploy but more of an environmental issue with one's development setup.