Skip to content

Commit

Permalink
build: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
qmhc committed Mar 25, 2024
1 parent 5e63117 commit 8da53a0
Show file tree
Hide file tree
Showing 4 changed files with 1,210 additions and 1,048 deletions.
42 changes: 21 additions & 21 deletions package.json
Expand Up @@ -58,44 +58,44 @@
"volar"
],
"dependencies": {
"@microsoft/api-extractor": "7.39.0",
"@microsoft/api-extractor": "7.43.0",
"@rollup/pluginutils": "^5.1.0",
"@vue/language-core": "^1.8.26",
"@vue/language-core": "^1.8.27",
"debug": "^4.3.4",
"kolorist": "^1.8.0",
"magic-string": "^0.30.7",
"vue-tsc": "^1.8.26"
"magic-string": "^0.30.8",
"vue-tsc": "^1.8.27"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/cli": "^19.2.1",
"@types/debug": "^4.1.12",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.5",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@vexip-ui/commitlint-config": "^0.3.0",
"@vexip-ui/eslint-config": "^0.11.0",
"@types/semver": "^7.5.8",
"@vexip-ui/commitlint-config": "^0.4.0",
"@vexip-ui/eslint-config": "^0.12.0",
"@vexip-ui/prettier-config": "^0.2.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"lint-staged": "^15.2.2",
"minimist": "^1.2.8",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"pretty-quick": "^3.1.3",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"tsx": "^4.7.0",
"typescript": "5.2.2",
"semver": "^7.6.0",
"tsx": "^4.7.1",
"typescript": "5.4.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vitest": "^1.1.0"
"vite": "^5.2.6",
"vitest": "^1.4.0"
},
"peerDependencies": {
"typescript": "*",
Expand All @@ -108,7 +108,7 @@
},
"pnpm": {
"patchedDependencies": {
"@microsoft/api-extractor@7.39.0": "patches/@microsoft__api-extractor@7.39.0.patch"
"@microsoft/api-extractor@7.43.0": "patches/@microsoft__api-extractor@7.43.0.patch"
}
}
}
24 changes: 0 additions & 24 deletions patches/@microsoft__api-extractor@7.39.0.patch

This file was deleted.

24 changes: 24 additions & 0 deletions patches/@microsoft__api-extractor@7.43.0.patch
@@ -0,0 +1,24 @@
diff --git a/lib/api/Extractor.js b/lib/api/Extractor.js
index c57e4abc8f5497a9b0260cd9e3eacc1233a252c5..9442a3c9cbf21f5925bb5b78f6cab049361ed0ca 100644
--- a/lib/api/Extractor.js
+++ b/lib/api/Extractor.js
@@ -259,7 +259,7 @@ class Extractor {
});
}
static _checkCompilerCompatibility(extractorConfig, messageRouter) {
- messageRouter.logInfo(ConsoleMessageId_1.ConsoleMessageId.Preamble, `Analysis will use the bundled TypeScript version ${ts.version}`);
+ // messageRouter.logInfo(ConsoleMessageId_1.ConsoleMessageId.Preamble, `Analysis will use the bundled TypeScript version ${ts.version}`);
try {
const typescriptPath = resolve.sync('typescript', {
basedir: extractorConfig.projectFolder,
@@ -274,8 +274,8 @@ class Extractor {
const theirMajor = semver.major(packageJson.version);
const theirMinor = semver.minor(packageJson.version);
if (theirMajor > ourMajor || (theirMajor === ourMajor && theirMinor > ourMinor)) {
- messageRouter.logInfo(ConsoleMessageId_1.ConsoleMessageId.CompilerVersionNotice, `*** The target project appears to use TypeScript ${packageJson.version} which is newer than the` +
- ` bundled compiler engine; consider upgrading API Extractor.`);
+ // messageRouter.logInfo(ConsoleMessageId_1.ConsoleMessageId.CompilerVersionNotice, `*** The target project appears to use TypeScript ${packageJson.version} which is newer than the` +
+ // ` bundled compiler engine; consider upgrading API Extractor.`);
}
}
}

0 comments on commit 8da53a0

Please sign in to comment.