chore(): sync with main

This commit is contained in:
Liam DeBeasi
2022-03-08 18:01:13 -05:00
committed by GitHub
4 changed files with 28 additions and 26 deletions

16
core/package-lock.json generated
View File

@ -6,10 +6,10 @@
"packages": { "packages": {
"": { "": {
"name": "@ionic/core", "name": "@ionic/core",
"version": "6.0.5", "version": "6.0.10",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@stencil/core": "~2.13.0", "@stencil/core": "^2.14.1",
"ionicons": "^6.0.0", "ionicons": "^6.0.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
@ -1366,9 +1366,9 @@
} }
}, },
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "2.13.0", "version": "2.14.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.13.0.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.14.1.tgz",
"integrity": "sha512-EEKHOHgYpg3/iFUKMXTZJjUayRul7sXDwNw0OGgkEOe4t7JWiibDkzUHuruvpbqEydX+z1+ez5K2bMMY76c2wA==", "integrity": "sha512-G58fJeDbi58+7uQnyaGInnehfub9tJikFZ4PkT/FuelMV9wGq2FKB0fxKctKQ3mhhHAiFDuGNzRD1isZZQvUCg==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@ -15055,9 +15055,9 @@
"dev": true "dev": true
}, },
"@stencil/core": { "@stencil/core": {
"version": "2.13.0", "version": "2.14.1",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.13.0.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.14.1.tgz",
"integrity": "sha512-EEKHOHgYpg3/iFUKMXTZJjUayRul7sXDwNw0OGgkEOe4t7JWiibDkzUHuruvpbqEydX+z1+ez5K2bMMY76c2wA==" "integrity": "sha512-G58fJeDbi58+7uQnyaGInnehfub9tJikFZ4PkT/FuelMV9wGq2FKB0fxKctKQ3mhhHAiFDuGNzRD1isZZQvUCg=="
}, },
"@stencil/react-output-target": { "@stencil/react-output-target": {
"version": "0.2.1", "version": "0.2.1",

View File

@ -31,7 +31,7 @@
"loader/" "loader/"
], ],
"dependencies": { "dependencies": {
"@stencil/core": "~2.13.0", "@stencil/core": "^2.14.1",
"ionicons": "^6.0.0", "ionicons": "^6.0.0",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },

File diff suppressed because one or more lines are too long

View File

@ -229,11 +229,13 @@ describe('Routing', () => {
routes: [ routes: [
{ path: '/', redirect: '/tabs/tab1' }, { path: '/', redirect: '/tabs/tab1' },
{ path: '/parent', component: Parent }, { path: '/parent', component: Parent },
{ path: '/tabs/', component: Tabs, children: [ {
{ path: '/', redirect: 'tab1' }, path: '/tabs/', component: Tabs, children: [
{ path: 'tab1', component: Tab1 }, { path: '/', redirect: 'tab1' },
{ path: 'tab2', component: Tab2 } { path: 'tab1', component: Tab1 },
]} { path: 'tab2', component: Tab2 }
]
}
] ]
}); });
@ -474,7 +476,7 @@ describe('Routing', () => {
const router = createRouter({ const router = createRouter({
history: createWebHistory(process.env.BASE_URL), history: createWebHistory(process.env.BASE_URL),
routes: [ routes: [
{ path: '/', component: Page } { path: '/', component: Page },
{ path: '/page2', component: Page2 } { path: '/page2', component: Page2 }
] ]
}); });
@ -527,7 +529,7 @@ describe('Routing', () => {
const router = createRouter({ const router = createRouter({
history: createWebHistory(process.env.BASE_URL), history: createWebHistory(process.env.BASE_URL),
routes: [ routes: [
{ path: '/', component: Page } { path: '/', component: Page },
{ path: '/page2', component: Page2 }, { path: '/page2', component: Page2 },
{ path: '/page3', component: Page3 }, { path: '/page3', component: Page3 },
] ]