Created
February 18, 2025 14:50
-
-
Save yogithesymbian/8f3e96a8c67dd579a092e889f5829068 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"build": "source $HOME/.nvm/nvm.sh; nvm use 12; vue-cli-service build", | |
"build:development": "source $HOME/.nvm/nvm.sh; nvm use 12; vue-cli-service build --mode development", | |
"start": "source $HOME/.nvm/nvm.sh; nvm use 18; vue-cli-service serve", | |
"start:production": "source $HOME/.nvm/nvm.sh; nvm use 18; vue-cli-service serve --mode production", | |
"lint": "source $HOME/.nvm/nvm.sh; nvm use 18; vue-cli-service lint", | |
"clean": "rm -rf package-lock.json && rm -rf node_modules && npm install --legacy-per-deps && npm run start", | |
"build:deploy": "source $HOME/.nvm/nvm.sh; nvm use 12 && npm run build && find ../visitor-dist -mindepth 1 ! -name '.git' ! -name '.gitignore' -exec rm -rf {} + && cp -R dist/* ../visitor-dist/" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment