Skip to content

Commit b45188f

Browse files
committed
chore: update dependencies
1 parent be2a154 commit b45188f

File tree

10 files changed

+2886
-3826
lines changed

10 files changed

+2886
-3826
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.13.0
1+
22.21.0

applications/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@sdk-usage/plugin-typescript": "workspace:^"
4040
},
4141
"devDependencies": {
42-
"@types/node": "22.10.6",
42+
"@types/node": "22.18.12",
4343
"quickbundle": "2.8.0"
4444
},
4545
"publishConfig": {

applications/cli/src/index.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import process from "node:process";
2-
3-
import typescriptSyntaxPlugin from "@sdk-usage/plugin-typescript";
4-
import jsxSyntaxPlugin from "@sdk-usage/plugin-jsx";
1+
import typescriptPlugin from "@sdk-usage/plugin-typescript";
2+
import jsxPlugin from "@sdk-usage/plugin-jsx";
53
import { createInstance } from "@sdk-usage/core";
64

75
const instance = createInstance(process.cwd(), {
8-
plugins: [jsxSyntaxPlugin, typescriptSyntaxPlugin],
6+
plugins: [jsxPlugin, typescriptPlugin],
97
});
108

119
const main = async () => {

examples/chakra-ui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"start": "sdk-usage"
88
},
99
"dependencies": {
10-
"@chakra-ui/react": "^3.3.1",
11-
"react": "^18.3.1"
10+
"@chakra-ui/react": "^3.28.0",
11+
"react": "^19.2.0"
1212
},
1313
"devDependencies": {
1414
"@sdk-usage/cli": "workspace:*",
15-
"@types/react": "18.3.18"
15+
"@types/react": "19.2.2"
1616
}
1717
}

libraries/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
},
4646
"dependencies": {
4747
"@open-vanilla/visitor": "^1.0.0",
48-
"@swc/core": "^1.10.7",
49-
"fdir": "^6.4.2",
50-
"picomatch": "^4.0.2"
48+
"@swc/core": "^1.13.5",
49+
"fdir": "^6.5.0",
50+
"picomatch": "^4.0.3"
5151
},
5252
"devDependencies": {
53-
"@types/node": "22.10.6",
53+
"@types/node": "22.18.12",
5454
"quickbundle": "2.8.0"
5555
},
5656
"publishConfig": {

libraries/core/src/modules/parser/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const parse = async (code: string, { onAdd, plugins }: ParseOptions) => {
4343
name:
4444
// @ts-expect-error `imported` field is not exposed by `ImportSpecifier` node (issue in `@swc/core` type definition).
4545
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
46-
(specifier.imported?.value || specifierValue) as string,
46+
(specifier.imported?.value ?? specifierValue) as string,
4747
alias: specifierValue,
4848
module,
4949
});

libraries/plugin-jsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"devDependencies": {
4747
"@sdk-usage/core": "workspace:*",
48-
"@types/node": "22.10.6",
48+
"@types/node": "22.18.12",
4949
"quickbundle": "2.8.0"
5050
},
5151
"peerDependencies": {

libraries/plugin-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"devDependencies": {
4747
"@sdk-usage/core": "workspace:*",
48-
"@types/node": "22.10.6",
48+
"@types/node": "22.18.12",
4949
"quickbundle": "2.8.0"
5050
},
5151
"peerDependencies": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
},
1919
"prettier": "@adbayb/stack/prettier",
2020
"devDependencies": {
21-
"@adbayb/stack": "2.16.0"
21+
"@adbayb/stack": "2.31.0"
2222
},
23-
"packageManager": "pnpm@9.15.4",
23+
"packageManager": "pnpm@10.18.3",
2424
"engines": {
2525
"node": ">=22.0.0",
2626
"pnpm": ">=9.0.0"

0 commit comments

Comments
 (0)