update dependencies
This commit is contained in:
parent
657d48712f
commit
5950299cfb
56
package.json
56
package.json
@ -7,8 +7,6 @@
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"test:unit": "vue-cli-service test:unit",
|
||||
"test:e2e": "vue-cli-service test:e2e",
|
||||
"lint": "vue-cli-service lint",
|
||||
"resources": "cordova-res android && cordova-res ios && node ./resources/sync.js android && node ./resources/sync.js ios"
|
||||
},
|
||||
@ -16,38 +14,36 @@
|
||||
"@capacitor/android": "2.4.7",
|
||||
"@capacitor/core": "2.4.7",
|
||||
"@capacitor/ios": "2.4.7",
|
||||
"@ionic-native/core": "^5.33.1",
|
||||
"@ionic-native/social-sharing": "^5.33.1",
|
||||
"@ionic/cli": "^6.15.0",
|
||||
"@ionic/pwa-elements": "^3.0.2",
|
||||
"@ionic/storage": "^3.0.4",
|
||||
"@ionic/vue": "^5.4.0",
|
||||
"@ionic/vue-router": "^5.4.0",
|
||||
"@vueuse/core": "^5.0.2",
|
||||
"axios": "^0.21.1",
|
||||
"cordova-plugin-x-socialsharing": "^6.0.3",
|
||||
"cordova-res": "^0.15.3",
|
||||
"core-js": "^3.6.5",
|
||||
"@ionic-native/core": "^5.36.0",
|
||||
"@ionic-native/social-sharing": "^5.36.0",
|
||||
"@ionic/cli": "^6.20.9",
|
||||
"@ionic/pwa-elements": "^3.2.2",
|
||||
"@ionic/storage": "^3.0.6",
|
||||
"@ionic/vue": "^5.9.4",
|
||||
"@ionic/vue-router": "^5.9.4",
|
||||
"@vueuse/core": "^5.3.0",
|
||||
"axios": "^0.21.4",
|
||||
"cordova-plugin-x-socialsharing": "^6.0.4",
|
||||
"cordova-res": "^0.15.4",
|
||||
"core-js": "^3.32.0",
|
||||
"es6-promise-plugin": "^4.2.2",
|
||||
"fs": "^0.0.1-security",
|
||||
"register-service-worker": "^1.7.1",
|
||||
"vue": "^3.0.0-0",
|
||||
"vue-router": "^4.0.0-0"
|
||||
"fs": "0.0.1-security",
|
||||
"pnpm": "^8.6.12",
|
||||
"register-service-worker": "^1.7.2",
|
||||
"vue": "^3.3.4",
|
||||
"vue-router": "^4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@capacitor/cli": "2.4.7",
|
||||
"@vue/cli-plugin-babel": "~4.5.0",
|
||||
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
|
||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
||||
"@vue/cli-plugin-pwa": "^4.5.13",
|
||||
"@vue/cli-plugin-router": "~4.5.0",
|
||||
"@vue/cli-plugin-unit-jest": "~4.5.0",
|
||||
"@vue/cli-service": "~4.5.0",
|
||||
"@vue/compiler-sfc": "^3.0.0-0",
|
||||
"@vue/test-utils": "^2.0.0-0",
|
||||
"eslint": "^6.7.2",
|
||||
"eslint-plugin-vue": "^7.0.0-0",
|
||||
"vue-jest": "^5.0.0-0"
|
||||
"@vue/cli-plugin-babel": "~4.5.19",
|
||||
"@vue/cli-plugin-e2e-cypress": "~4.5.19",
|
||||
"@vue/cli-plugin-eslint": "~4.5.19",
|
||||
"@vue/cli-plugin-pwa": "^4.5.19",
|
||||
"@vue/cli-plugin-router": "~4.5.19",
|
||||
"@vue/cli-service": "~4.5.19",
|
||||
"@vue/compiler-sfc": "^3.3.4",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-plugin-vue": "^7.20.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"cypress": "^4.4.0"
|
||||
|
11609
pnpm-lock.yaml
Normal file
11609
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,10 @@
|
||||
<ion-header collapse="condense">
|
||||
<ion-toolbar>
|
||||
<ion-title size="large"
|
||||
>Cocktails {{ cocktails ? "#" + cocktails.length : "please restore" }}</ion-title
|
||||
>Cocktails
|
||||
{{
|
||||
cocktails ? "#" + cocktails.length : "please restore"
|
||||
}}</ion-title
|
||||
>
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
|
@ -83,7 +83,6 @@
|
||||
>{{ ingred.name }}</ion-select-option
|
||||
>
|
||||
</ion-select>
|
||||
<p>{{ingredient.ingredient === cocktail.ingredients[index].ingredient}}</p>
|
||||
|
||||
<ion-icon
|
||||
:icon="trash"
|
||||
@ -228,7 +227,7 @@ export default {
|
||||
|
||||
const doEditCocktail = async (cocktail) => {
|
||||
//console.log("editing: ", cocktail);
|
||||
cocktail?cocktail:false;
|
||||
console.log(cocktail?cocktail:false);
|
||||
//editCocktail(cocktail);
|
||||
//router.push("/tabs/Cocktails")
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user