-
Notifications
You must be signed in to change notification settings - Fork 855
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from cristim67/master
Deploy on Genezio
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: vue-black-dashboard | ||
region: us-east-1 | ||
frontend: | ||
# Specifies the path of your code. | ||
path: . | ||
# Specifies the folder where the build is located. | ||
# This is the folder that will be deployed. | ||
publish: dist | ||
# Scripts will run in the specified `path` folder. | ||
scripts: | ||
# The command to build your frontend project. This is custom to your project. | ||
# It must to populate the specified `publish` folder with a `index.html` file. | ||
deploy: | ||
- npm install --legacy-peer-deps | ||
- npm run build | ||
yamlVersion: 2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"author": "cristian.jora <[email protected]>", | ||
"scripts": { | ||
"serve": "vue-cli-service serve --open", | ||
"build": "vue-cli-service build", | ||
"build": "cross-env CI=false vue-cli-service build", | ||
"e2e": "node test/e2e/runner.js", | ||
"lint": "vue-cli-service lint", | ||
"dev": "vue-cli-service serve --open", | ||
|
@@ -25,12 +25,13 @@ | |
"vue2-transitions": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "7.21.8", | ||
"@vue/cli-plugin-babel": "5.0.8", | ||
"@vue/cli-plugin-eslint": "5.0.8", | ||
"@vue/cli-plugin-pwa": "5.0.8", | ||
"@vue/cli-service": "5.0.8", | ||
"@vue/eslint-config-prettier": "7.1.0", | ||
"@babel/eslint-parser": "7.21.8", | ||
"cross-env": "^7.0.3", | ||
"eslint": "8.41.0", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"eslint-plugin-vue": "9.14.1", | ||
|