rename dev and build scripts

This commit is contained in:
Enrique Hernandez 2021-04-16 09:46:29 -04:00
commit 17bcda5906
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ build:
- echo "VERSION=$VERSION" >> variables.env - echo "VERSION=$VERSION" >> variables.env
- export APPNAME=$(node -e "console.log(require('./package.json').productName)") - export APPNAME=$(node -e "console.log(require('./package.json').productName)")
- echo "APPNAME=$APPNAME" >> variables.env - echo "APPNAME=$APPNAME" >> variables.env
- yarn electron:build - yarn build
artifacts: artifacts:
reports: reports:
dotenv: variables.env dotenv: variables.env

View file

@ -7,8 +7,8 @@
"name": "Enrique Hernandez" "name": "Enrique Hernandez"
}, },
"scripts": { "scripts": {
"electron:build": "vue-cli-service electron:build", "build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve", "dev": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps", "postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps" "postuninstall": "electron-builder install-app-deps"
}, },