chore(deps): upgrade stencil to v3.1.0 (#26878)

this commit increments the version of stencil used to v3.1.0. this
release of stencil fixes an issue for the ionic framework, where module
aliases from `tsconfig.json#paths` can be transformed by setting
`transformAliasedImportPaths: true` in a stencil configuration file

changelog: https://github.com/ionic-team/stencil/releases/tag/v3.1.0
documentatation: https://stenciljs.com/docs/config#transformaliasedimportpaths
This commit is contained in:
Ryan Waskiewicz
2023-02-28 11:58:49 -08:00
committed by GitHub
parent 17d4323a5f
commit 617c8d3315
3 changed files with 9 additions and 8 deletions

14
core/package-lock.json generated
View File

@@ -9,7 +9,7 @@
"version": "7.0.0-beta.5", "version": "7.0.0-beta.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@stencil/core": "^3.0.0", "@stencil/core": "^3.1.0",
"ionicons": "^6.1.1", "ionicons": "^6.1.1",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },
@@ -1600,9 +1600,9 @@
} }
}, },
"node_modules/@stencil/core": { "node_modules/@stencil/core": {
"version": "3.0.0", "version": "3.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-3.0.0.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-3.1.0.tgz",
"integrity": "sha512-MYhrOlnzAtBUJH0FEggaP2pwm5GUvkB4wYRpZZFtUzGXAPamvrsreUf8QsGe0C4NdFdk8NlUauFxEEGE3z1+Sw==", "integrity": "sha512-Zfe+evaw9m2L/HkTO97Hu8go2ThXrObyWkVqa7V3HjTnq+8TUd/nwld9PC0bOItC/eyMRXsWHdEDCpJAZ1tEVQ==",
"bin": { "bin": {
"stencil": "bin/stencil" "stencil": "bin/stencil"
}, },
@@ -11590,9 +11590,9 @@
"requires": {} "requires": {}
}, },
"@stencil/core": { "@stencil/core": {
"version": "3.0.0", "version": "3.1.0",
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-3.0.0.tgz", "resolved": "https://registry.npmjs.org/@stencil/core/-/core-3.1.0.tgz",
"integrity": "sha512-MYhrOlnzAtBUJH0FEggaP2pwm5GUvkB4wYRpZZFtUzGXAPamvrsreUf8QsGe0C4NdFdk8NlUauFxEEGE3z1+Sw==" "integrity": "sha512-Zfe+evaw9m2L/HkTO97Hu8go2ThXrObyWkVqa7V3HjTnq+8TUd/nwld9PC0bOItC/eyMRXsWHdEDCpJAZ1tEVQ=="
}, },
"@stencil/react-output-target": { "@stencil/react-output-target": {
"version": "0.4.0", "version": "0.4.0",

View File

@@ -31,7 +31,7 @@
"loader/" "loader/"
], ],
"dependencies": { "dependencies": {
"@stencil/core": "^3.0.0", "@stencil/core": "^3.1.0",
"ionicons": "^6.1.1", "ionicons": "^6.1.1",
"tslib": "^2.1.0" "tslib": "^2.1.0"
}, },

View File

@@ -211,4 +211,5 @@ export const config: Config = {
preamble: '(C) Ionic http://ionicframework.com - MIT License', preamble: '(C) Ionic http://ionicframework.com - MIT License',
globalScript: 'src/global/ionic-global.ts', globalScript: 'src/global/ionic-global.ts',
enableCache: true, enableCache: true,
transformAliasedImportPaths: true,
}; };