Skip to content

Commit 1e0c30e

Browse files
committed
deps: update all dependencies
1 parent 98b9c29 commit 1e0c30e

File tree

34 files changed

+1021
-891
lines changed

34 files changed

+1021
-891
lines changed

.yarn/sdks/eslint/bin/eslint.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real eslint/bin/eslint.js your application uses
27-
module.exports = absRequire(`eslint/bin/eslint.js`);
32+
module.exports = wrapWithUserWrapper(absRequire(`eslint/bin/eslint.js`));

.yarn/sdks/eslint/lib/api.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real eslint your application uses
27-
module.exports = absRequire(`eslint`);
32+
module.exports = wrapWithUserWrapper(absRequire(`eslint`));

.yarn/sdks/eslint/lib/unsupported-api.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real eslint/use-at-your-own-risk your application uses
27-
module.exports = absRequire(`eslint/use-at-your-own-risk`);
32+
module.exports = wrapWithUserWrapper(absRequire(`eslint/use-at-your-own-risk`));

.yarn/sdks/prettier/bin/prettier.cjs

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real prettier/bin/prettier.cjs your application uses
27-
module.exports = absRequire(`prettier/bin/prettier.cjs`);
32+
module.exports = wrapWithUserWrapper(absRequire(`prettier/bin/prettier.cjs`));

.yarn/sdks/prettier/index.cjs

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real prettier your application uses
27-
module.exports = absRequire(`prettier`);
32+
module.exports = wrapWithUserWrapper(absRequire(`prettier`));

.yarn/sdks/prettier/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "3.3.2-sdk",
3+
"version": "3.3.3-sdk",
44
"main": "./index.cjs",
55
"type": "commonjs",
66
"bin": "./bin/prettier.cjs"

.yarn/sdks/typescript/bin/tsc

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real typescript/bin/tsc your application uses
27-
module.exports = absRequire(`typescript/bin/tsc`);
32+
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsc`));

.yarn/sdks/typescript/bin/tsserver

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real typescript/bin/tsserver your application uses
27-
module.exports = absRequire(`typescript/bin/tsserver`);
32+
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsserver`));

.yarn/sdks/typescript/lib/tsc.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real typescript/lib/tsc.js your application uses
27-
module.exports = absRequire(`typescript/lib/tsc.js`);
32+
module.exports = wrapWithUserWrapper(absRequire(`typescript/lib/tsc.js`));

.yarn/sdks/typescript/lib/tsserver.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,7 +24,15 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

26-
const moduleWrapper = tsserver => {
27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
31+
const moduleWrapper = exports => {
32+
return wrapWithUserWrapper(moduleWrapperFn(exports));
33+
};
34+
35+
const moduleWrapperFn = tsserver => {
2736
if (!process.versions.pnp) {
2837
return tsserver;
2938
}

.yarn/sdks/typescript/lib/tsserverlibrary.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,7 +24,15 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

26-
const moduleWrapper = tsserver => {
27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
31+
const moduleWrapper = exports => {
32+
return wrapWithUserWrapper(moduleWrapperFn(exports));
33+
};
34+
35+
const moduleWrapperFn = tsserver => {
2736
if (!process.versions.pnp) {
2837
return tsserver;
2938
}

.yarn/sdks/typescript/lib/typescript.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const {pathToFileURL} = require(`url`);
88
const relPnpApiPath = "../../../../.pnp.cjs";
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
11+
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
1112
const absRequire = createRequire(absPnpApiPath);
1213

1314
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
@@ -23,5 +24,9 @@ if (existsSync(absPnpApiPath)) {
2324
}
2425
}
2526

27+
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
30+
2631
// Defer to the real typescript your application uses
27-
module.exports = absRequire(`typescript`);
32+
module.exports = wrapWithUserWrapper(absRequire(`typescript`));

.yarn/sdks/typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript",
3-
"version": "5.5.3-sdk",
3+
"version": "5.5.4-sdk",
44
"main": "./lib/typescript.js",
55
"type": "commonjs",
66
"bin": {

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,24 @@
3939
"devDependencies": {
4040
"@alwatr/eslint-config": "workspace:^",
4141
"@alwatr/prettier-config": "workspace:^",
42-
"@lerna-lite/changed": "^3.6.0",
43-
"@lerna-lite/cli": "^3.6.0",
44-
"@lerna-lite/diff": "^3.6.0",
45-
"@lerna-lite/exec": "^3.6.0",
46-
"@lerna-lite/publish": "^3.6.0",
47-
"@lerna-lite/run": "^3.6.0",
48-
"@lerna-lite/version": "^3.6.0",
42+
"@lerna-lite/changed": "^3.8.0",
43+
"@lerna-lite/cli": "^3.8.0",
44+
"@lerna-lite/diff": "^3.8.0",
45+
"@lerna-lite/exec": "^3.8.0",
46+
"@lerna-lite/publish": "^3.8.0",
47+
"@lerna-lite/run": "^3.8.0",
48+
"@lerna-lite/version": "^3.8.0",
4949
"@types/jest": "^29.5.12",
5050
"@typescript-eslint/eslint-plugin": "^7.15.0",
5151
"@typescript-eslint/parser": "^7.15.0",
5252
"conventional-changelog-conventionalcommits": "^7.0.2",
5353
"eslint": "^8.57.0",
54-
"eslint-import-resolver-typescript": "^3.6.1",
54+
"eslint-import-resolver-typescript": "^3.6.3",
5555
"eslint-plugin-import": "^2.29.1",
5656
"eslint-plugin-require-extensions": "^0.1.3",
5757
"jest": "^29.7.0",
58-
"prettier": "^3.3.2",
59-
"typescript": "^5.5.3"
58+
"prettier": "^3.3.3",
59+
"typescript": "^5.5.4"
6060
},
61-
"packageManager": "yarn@4.3.1"
61+
"packageManager": "yarn@4.4.1"
6262
}

packages/async-queue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
"@alwatr/prettier-config": "workspace:^",
8282
"@alwatr/tsconfig-base": "workspace:^",
8383
"@alwatr/type-helper": "workspace:^",
84-
"@types/node": "^20.14.9",
84+
"@types/node": "^22.5.1",
8585
"jest": "^29.7.0",
86-
"typescript": "^5.5.3"
86+
"typescript": "^5.5.4"
8787
}
8888
}

packages/dedupe/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@alwatr/prettier-config": "workspace:^",
7272
"@alwatr/tsconfig-base": "workspace:^",
7373
"@alwatr/type-helper": "workspace:^",
74-
"@types/node": "^20.14.9",
75-
"typescript": "^5.5.3"
74+
"@types/node": "^22.5.1",
75+
"typescript": "^5.5.4"
7676
}
7777
}

packages/deep-clone/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@
7070
"@alwatr/nano-build": "workspace:^",
7171
"@alwatr/prettier-config": "workspace:^",
7272
"@alwatr/tsconfig-base": "workspace:^",
73-
"typescript": "^5.5.3"
73+
"typescript": "^5.5.4"
7474
}
7575
}

packages/eslint-config/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@
4545
},
4646
"prettier": "@alwatr/prettier-config",
4747
"dependencies": {
48-
"esbuild": "^0.23.0"
48+
"esbuild": "^0.23.1"
4949
},
5050
"devDependencies": {
5151
"@alwatr/prettier-config": "workspace:^",
5252
"@alwatr/tsconfig-base": "workspace:^",
5353
"@typescript-eslint/eslint-plugin": "^7.15.0",
5454
"@typescript-eslint/parser": "^7.15.0",
5555
"eslint": "^8.57.0",
56-
"eslint-import-resolver-typescript": "^3.6.1",
56+
"eslint-import-resolver-typescript": "^3.6.3",
5757
"eslint-plugin-import": "^2.29.1",
5858
"eslint-plugin-require-extensions": "^0.1.3",
59-
"typescript": "^5.5.3"
59+
"typescript": "^5.5.4"
6060
},
6161
"peerDependencies": {
6262
"@typescript-eslint/eslint-plugin": ">6.0.0",

packages/exit-hook/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@alwatr/nano-build": "workspace:^",
6969
"@alwatr/prettier-config": "workspace:^",
7070
"@alwatr/tsconfig-base": "workspace:^",
71-
"@types/node": "^20.14.9",
72-
"typescript": "^5.5.3"
71+
"@types/node": "^22.5.1",
72+
"typescript": "^5.5.4"
7373
}
7474
}

packages/fetch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
"@alwatr/prettier-config": "workspace:^",
8181
"@alwatr/tsconfig-base": "workspace:^",
8282
"@alwatr/type-helper": "workspace:^",
83-
"@types/node": "^20.14.9",
83+
"@types/node": "^22.5.1",
8484
"jest": "^29.7.0",
85-
"typescript": "^5.5.3"
85+
"typescript": "^5.5.4"
8686
}
8787
}

packages/flat-string/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@
7171
"@alwatr/nano-build": "workspace:^",
7272
"@alwatr/prettier-config": "workspace:^",
7373
"@alwatr/tsconfig-base": "workspace:^",
74-
"typescript": "^5.5.3"
74+
"typescript": "^5.5.4"
7575
}
7676
}

packages/flatomise/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@alwatr/nano-build": "workspace:^",
6969
"@alwatr/prettier-config": "workspace:^",
7070
"@alwatr/tsconfig-base": "workspace:^",
71-
"@types/node": "^20.14.9",
72-
"typescript": "^5.5.3"
71+
"@types/node": "^22.5.1",
72+
"typescript": "^5.5.4"
7373
}
7474
}

packages/global-scope/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"@alwatr/nano-build": "workspace:^",
7373
"@alwatr/prettier-config": "workspace:^",
7474
"@alwatr/tsconfig-base": "workspace:^",
75-
"@types/node": "^20.14.9",
76-
"typescript": "^5.5.3"
75+
"@types/node": "^22.5.1",
76+
"typescript": "^5.5.4"
7777
}
7878
}

packages/is-number/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
"@alwatr/nano-build": "workspace:^",
8989
"@alwatr/prettier-config": "workspace:^",
9090
"@alwatr/tsconfig-base": "workspace:^",
91-
"@types/node": "^20.14.9",
91+
"@types/node": "^22.5.1",
9292
"jest": "^29.7.0",
93-
"typescript": "^5.5.3"
93+
"typescript": "^5.5.4"
9494
}
9595
}

packages/local-storage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@
7171
"@alwatr/prettier-config": "workspace:^",
7272
"@alwatr/tsconfig-base": "workspace:^",
7373
"@alwatr/type-helper": "workspace:^",
74-
"typescript": "^5.5.3"
74+
"typescript": "^5.5.4"
7575
}
7676
}

0 commit comments

Comments
 (0)