Skip to content

Commit

Permalink
chore(deps): update all minor dependencies (#544)
Browse files Browse the repository at this point in the history
* chore(deps): update all minor dependencies

* fix dep updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Christian Bromann <[email protected]>
  • Loading branch information
renovate[bot] and christian-bromann authored Nov 26, 2024
1 parent b780d96 commit e02114a
Show file tree
Hide file tree
Showing 9 changed files with 1,264 additions and 1,549 deletions.
2 changes: 1 addition & 1 deletion example-project/component-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
"devDependencies": {
"@stencil/angular-output-target": "workspace:*",
"@stencil/core": "^4.22.1",
"@stencil/core": "^4.22.3",
"@stencil/react-output-target": "workspace:*",
"@stencil/vue-output-target": "workspace:*",
"@types/puppeteer": "2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion example-project/vue-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"tsx": "^4.19.1",
"typescript": "^5.5.3",
"vite": "^5.4.8",
"vue-tsc": "^2.1.6",
"vue-tsc": "^2.1.10",
"wdio-vite-service": "^1.0.9",
"webdriverio": "^9.1.5"
}
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,10 @@
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9.4.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}
23 changes: 8 additions & 15 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
"description": "Angular output target for @stencil/core components.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist/",
Expand Down Expand Up @@ -47,25 +54,11 @@
"npm-run-all2": "^6.2.4",
"rimraf": "^5.0.0",
"rollup": "^2.23.1",
"typescript": "~5.6.0",
"typescript": "~5.7.0",
"vitest": "^2.1.4"
},
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts?|tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"testURL": "http://localhost"
},
"gitHead": "a3588e905186a0e86e7f88418fd5b2f9531b55e0"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg from './package.json';
import pkg from './package.json' assert { type: 'json' };

export default {
input: 'dist/index.js',
Expand Down
3 changes: 1 addition & 2 deletions packages/angular/src/generate-value-accessors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ function copyResources(config: Config, resourcesFilesToCopy: string[], directory
throw new Error('stencil is not properly initialized at this step. Notify the developer');
}
const copyTasks = resourcesFilesToCopy.map((rf) => {
const dest = path.resolve(directory, rf);
return {
src: path.join(__dirname, '../resources/control-value-accessors/', rf),
dest: path.extname(dest) ? path.dirname(dest) : dest,
dest: path.join(directory, rf),
keepDirStructure: false,
warn: false,
ignore: [],
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
"vitest": "^2.0.5",
"rimraf": "^5.0.0",
"rollup": "^4.14.3",
"typescript": "~5.6.0"
"typescript": "~5.7.0"
}
}
13 changes: 13 additions & 0 deletions patches/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/index.js b/index.js
index a680d25dfa98a45a3efec0bfb493500e6e9faa91..ca90b6226c88b5bc27aa5323c4e0e5f30f5b9ef2 100644
--- a/index.js
+++ b/index.js
@@ -4,7 +4,7 @@ exports.run = run;
const runTsc_1 = require("@volar/typescript/lib/quickstart/runTsc");
const vue = require("@vue/language-core");
const windowsPathReg = /\\/g;
-function run(tscPath = require.resolve('typescript/lib/tsc')) {
+function run(tscPath = require.resolve('typescript/lib/_tsc')) {
let runExtensions = ['.vue'];
const extensionsChangedException = new Error('extensions changed');
const main = () => (0, runTsc_1.runTsc)(tscPath, runExtensions, (ts, options) => {
Loading

0 comments on commit e02114a

Please sign in to comment.