mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Vue input values cannot accept a string object without causing it's behavior to fail. This is happening because a change that happened through Vue. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Vue released a fix, verified that fixes the issue, upgraded the version ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/docs/CONTRIBUTING.md#footer for more information. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "test-app",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "An Ionic project",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"serve": "vite preview",
|
|
"test:unit": "vitest",
|
|
"test:e2e": "concurrently \"npm run build && npm run serve\" \"wait-on http-get://localhost:8080 && npm run cypress\" --kill-others --success first",
|
|
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
|
|
"cypress": "node_modules/.bin/cypress run --headless --browser chrome",
|
|
"cypress.open": "cypress open",
|
|
"start": "npm run dev",
|
|
"sync": "sh ./scripts/sync.sh"
|
|
},
|
|
"dependencies": {
|
|
"@ionic/vue": "^6.0.12",
|
|
"@ionic/vue-router": "^6.0.12",
|
|
"ionicons": "^6.0.4",
|
|
"vue": "^3.4.30",
|
|
"vue-router": "^4.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
"@vitejs/plugin-vue": "^3.1.0",
|
|
"@vue/eslint-config-typescript": "^9.1.0",
|
|
"@vue/test-utils": "^2.0.0-rc.18",
|
|
"concurrently": "^6.0.0",
|
|
"cypress": "^13.2.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-vue": "^8.0.3",
|
|
"jsdom": "^20.0.0",
|
|
"typescript": "~4.5.5",
|
|
"vite": "^3.1.4",
|
|
"vitest": "^1.2.1",
|
|
"wait-on": "^5.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 16"
|
|
}
|
|
}
|