@storm-software/workspace-tools 1.271.1 → 1.272.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/README.md +440 -61
- package/config/base.json +2 -4
- package/dist/{chunk-GQQLBQPQ.mjs → chunk-4K5FV2MH.mjs} +3 -3
- package/dist/{chunk-QFWQZOVG.mjs → chunk-6LP3KKXE.mjs} +1 -1
- package/dist/{chunk-AOFWKOAI.js → chunk-7CA3TDXD.js} +4 -4
- package/dist/{chunk-FOFNKU5G.js → chunk-7IYOBX35.js} +24 -17
- package/dist/{chunk-EU6N7QT3.js → chunk-7RVW57VK.js} +5 -5
- package/dist/{chunk-UIPUSUAB.js → chunk-C6YYTK6Q.js} +9 -5
- package/dist/{chunk-SNMXP6JV.mjs → chunk-EXYV2BKT.mjs} +3 -3
- package/dist/{chunk-BFD7HHVZ.mjs → chunk-EZPQKO5C.mjs} +3 -3
- package/dist/{chunk-23BZQTB2.mjs → chunk-GMG4M2RZ.mjs} +10 -6
- package/dist/{chunk-4S66IYQF.mjs → chunk-I2GT7ECM.mjs} +2 -2
- package/dist/{chunk-O6RRIC6I.js → chunk-KQBEYBS7.js} +4 -4
- package/dist/{chunk-4BECJRPP.js → chunk-LJDV7HFT.js} +1 -1
- package/dist/{chunk-M725BO42.mjs → chunk-PCVYQGOH.mjs} +2 -2
- package/dist/{chunk-TSYIV33W.js → chunk-WGDJV4SH.js} +5 -5
- package/dist/{chunk-4QRA66TH.mjs → chunk-X2L5HFRH.mjs} +18 -11
- package/dist/{chunk-22UY7NFX.js → chunk-X5VIC7HP.js} +5 -5
- package/dist/executors.js +11 -11
- package/dist/executors.mjs +11 -11
- package/dist/index.js +11 -11
- package/dist/index.mjs +11 -11
- package/dist/src/executors/cargo-build/executor.js +3 -3
- package/dist/src/executors/cargo-build/executor.mjs +2 -2
- package/dist/src/executors/cargo-check/executor.js +3 -3
- package/dist/src/executors/cargo-check/executor.mjs +2 -2
- package/dist/src/executors/cargo-clippy/executor.js +3 -3
- package/dist/src/executors/cargo-clippy/executor.mjs +2 -2
- package/dist/src/executors/cargo-doc/executor.js +3 -3
- package/dist/src/executors/cargo-doc/executor.mjs +2 -2
- package/dist/src/executors/cargo-format/executor.js +3 -3
- package/dist/src/executors/cargo-format/executor.mjs +2 -2
- package/dist/src/plugins/rust/cargo-toml.js +3 -3
- package/dist/src/plugins/rust/cargo-toml.mjs +2 -2
- package/dist/src/plugins/rust/index.js +3 -3
- package/dist/src/plugins/rust/index.mjs +2 -2
- package/dist/src/plugins/typescript/index.js +2 -2
- package/dist/src/plugins/typescript/index.mjs +1 -1
- package/dist/src/plugins/typescript/project-config.js +2 -2
- package/dist/src/plugins/typescript/project-config.mjs +1 -1
- package/dist/src/plugins/typescript/tsup.js +9 -3
- package/dist/src/plugins/typescript/tsup.mjs +9 -3
- package/dist/src/plugins/typescript/untyped-schema.d.mts +1 -2
- package/dist/src/plugins/typescript/untyped-schema.d.ts +1 -2
- package/dist/src/plugins/typescript/untyped-schema.js +10 -4
- package/dist/src/plugins/typescript/untyped-schema.mjs +10 -4
- package/dist/src/plugins/typescript/untyped-schema.ts +31 -25
- package/dist/src/utils/cargo.js +2 -2
- package/dist/src/utils/cargo.mjs +1 -1
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +1 -1
- package/package.json +7 -7
|
@@ -52,7 +52,12 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
52
52
|
packageJson
|
|
53
53
|
);
|
|
54
54
|
const nxJson = readNxJson(context2.workspaceRoot);
|
|
55
|
-
const targets = readTargetsFromPackageJson(
|
|
55
|
+
const targets = readTargetsFromPackageJson(
|
|
56
|
+
packageJson,
|
|
57
|
+
nxJson,
|
|
58
|
+
project.root,
|
|
59
|
+
context2.workspaceRoot
|
|
60
|
+
);
|
|
56
61
|
let relativeRoot = projectRoot.replaceAll("\\", "/").replace(context2.workspaceRoot.replaceAll("\\", "/"), "");
|
|
57
62
|
if (relativeRoot.startsWith("/")) {
|
|
58
63
|
relativeRoot = relativeRoot.slice(1);
|
|
@@ -82,7 +87,7 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
82
87
|
],
|
|
83
88
|
options: {
|
|
84
89
|
commands: [
|
|
85
|
-
`storm-untyped generate --entry
|
|
90
|
+
`storm-untyped generate --entry=\\"${projectRoot}/**/{untyped.ts,*.untyped.ts}\\" `
|
|
86
91
|
]
|
|
87
92
|
}
|
|
88
93
|
};
|
|
@@ -96,8 +101,9 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
96
101
|
}
|
|
97
102
|
}
|
|
98
103
|
} : {};
|
|
99
|
-
console.log(
|
|
100
|
-
|
|
104
|
+
console.log(
|
|
105
|
+
`[storm-software/typescript/untyped]: Inferred Nx configuration for ${project?.name ?? "missing name"}`
|
|
106
|
+
);
|
|
101
107
|
return result;
|
|
102
108
|
} catch (e) {
|
|
103
109
|
console.error(e);
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
createNodesFromFiles,
|
|
3
3
|
CreateNodesResultV2,
|
|
4
4
|
CreateNodesV2,
|
|
5
|
-
readJsonFile
|
|
5
|
+
readJsonFile
|
|
6
6
|
} from "@nx/devkit";
|
|
7
7
|
import { existsSync } from "node:fs";
|
|
8
8
|
import { dirname, join } from "node:path";
|
|
@@ -10,14 +10,14 @@ import { readNxJson } from "nx/src/config/nx-json.js";
|
|
|
10
10
|
import type { ProjectConfiguration } from "nx/src/config/workspace-json-project-json";
|
|
11
11
|
import {
|
|
12
12
|
readTargetsFromPackageJson,
|
|
13
|
-
type PackageJson
|
|
13
|
+
type PackageJson
|
|
14
14
|
} from "nx/src/utils/package-json";
|
|
15
15
|
import { addProjectTag, ProjectTagConstants } from "../../utils/project-tags";
|
|
16
16
|
|
|
17
17
|
export const name = "storm-software/typescript/untyped";
|
|
18
18
|
|
|
19
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-
|
|
20
|
-
export
|
|
19
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
20
|
+
export type UntypedPluginOptions = {};
|
|
21
21
|
|
|
22
22
|
export const createNodesV2: CreateNodesV2<UntypedPluginOptions> = [
|
|
23
23
|
"**/*untyped.ts",
|
|
@@ -29,12 +29,12 @@ export const createNodesV2: CreateNodesV2<UntypedPluginOptions> = [
|
|
|
29
29
|
|
|
30
30
|
const projectRoot = createProjectRoot(
|
|
31
31
|
configFile,
|
|
32
|
-
context.workspaceRoot
|
|
32
|
+
context.workspaceRoot
|
|
33
33
|
);
|
|
34
34
|
if (!projectRoot) {
|
|
35
35
|
console.error(
|
|
36
36
|
"No project.json found in parent directories of Untyped schema file: ",
|
|
37
|
-
configFile
|
|
37
|
+
configFile
|
|
38
38
|
);
|
|
39
39
|
|
|
40
40
|
return {};
|
|
@@ -43,7 +43,7 @@ export const createNodesV2: CreateNodesV2<UntypedPluginOptions> = [
|
|
|
43
43
|
const packageJson = readJsonFile(join(projectRoot, "package.json"));
|
|
44
44
|
if (!packageJson) {
|
|
45
45
|
console.error(
|
|
46
|
-
`No package.json found in project root: ${projectRoot}
|
|
46
|
+
`No package.json found in project root: ${projectRoot}`
|
|
47
47
|
);
|
|
48
48
|
return {};
|
|
49
49
|
}
|
|
@@ -54,18 +54,23 @@ export const createNodesV2: CreateNodesV2<UntypedPluginOptions> = [
|
|
|
54
54
|
) {
|
|
55
55
|
console.warn(
|
|
56
56
|
`No "untyped" dependency or devDependency found in package.json: ${configFile}
|
|
57
|
-
Please add it to your dependencies by running "pnpm add untyped -D --filter="${packageJson.name}"
|
|
57
|
+
Please add it to your dependencies by running "pnpm add untyped -D --filter="${packageJson.name}"`
|
|
58
58
|
);
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
const project = createProjectFromPackageJsonNextToProjectJson(
|
|
62
62
|
join(projectRoot, "project.json"),
|
|
63
|
-
packageJson
|
|
63
|
+
packageJson
|
|
64
64
|
);
|
|
65
65
|
|
|
66
66
|
const nxJson = readNxJson(context.workspaceRoot);
|
|
67
67
|
const targets: ProjectConfiguration["targets"] =
|
|
68
|
-
readTargetsFromPackageJson(
|
|
68
|
+
readTargetsFromPackageJson(
|
|
69
|
+
packageJson as PackageJson,
|
|
70
|
+
nxJson,
|
|
71
|
+
project.root,
|
|
72
|
+
context.workspaceRoot
|
|
73
|
+
);
|
|
69
74
|
|
|
70
75
|
let relativeRoot = projectRoot
|
|
71
76
|
.replaceAll("\\", "/")
|
|
@@ -88,7 +93,7 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
88
93
|
dependsOn: ["clean", "^build"],
|
|
89
94
|
inputs: [
|
|
90
95
|
"{projectRoot}/src/**/untyped.ts",
|
|
91
|
-
"{projectRoot}/src/**/*.untyped.ts"
|
|
96
|
+
"{projectRoot}/src/**/*.untyped.ts"
|
|
92
97
|
],
|
|
93
98
|
outputs: [
|
|
94
99
|
"{projectRoot}/src/**/schema.d.ts",
|
|
@@ -96,13 +101,13 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
96
101
|
"{projectRoot}/src/**/schema.md",
|
|
97
102
|
"{projectRoot}/src/**/*.schema.md",
|
|
98
103
|
"{projectRoot}/src/**/schema.json",
|
|
99
|
-
"{projectRoot}/src/**/*.schema.json"
|
|
104
|
+
"{projectRoot}/src/**/*.schema.json"
|
|
100
105
|
],
|
|
101
106
|
options: {
|
|
102
107
|
commands: [
|
|
103
|
-
`storm-untyped generate --entry
|
|
104
|
-
]
|
|
105
|
-
}
|
|
108
|
+
`storm-untyped generate --entry=\\"${projectRoot}/**/{untyped.ts,*.untyped.ts}\\" `
|
|
109
|
+
]
|
|
110
|
+
}
|
|
106
111
|
};
|
|
107
112
|
|
|
108
113
|
addProjectTag(project, ProjectTagConstants.Plugin.TAG_ID, name);
|
|
@@ -113,13 +118,14 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
113
118
|
[project.name]: {
|
|
114
119
|
...project,
|
|
115
120
|
root: relativeRoot,
|
|
116
|
-
targets
|
|
117
|
-
}
|
|
118
|
-
}
|
|
121
|
+
targets
|
|
122
|
+
}
|
|
123
|
+
}
|
|
119
124
|
}
|
|
120
125
|
: {};
|
|
121
|
-
console.log(
|
|
122
|
-
|
|
126
|
+
console.log(
|
|
127
|
+
`[storm-software/typescript/untyped]: Inferred Nx configuration for ${project?.name ?? "missing name"}`
|
|
128
|
+
);
|
|
123
129
|
|
|
124
130
|
return result;
|
|
125
131
|
} catch (e) {
|
|
@@ -129,14 +135,14 @@ Please add it to your dependencies by running "pnpm add untyped -D --filter="${p
|
|
|
129
135
|
},
|
|
130
136
|
configFiles,
|
|
131
137
|
options,
|
|
132
|
-
context
|
|
138
|
+
context
|
|
133
139
|
);
|
|
134
|
-
}
|
|
140
|
+
}
|
|
135
141
|
];
|
|
136
142
|
|
|
137
143
|
function createProjectFromPackageJsonNextToProjectJson(
|
|
138
144
|
projectJsonPath: string,
|
|
139
|
-
packageJson: PackageJson
|
|
145
|
+
packageJson: PackageJson
|
|
140
146
|
): ProjectConfiguration {
|
|
141
147
|
const { nx, name } = packageJson;
|
|
142
148
|
const root = dirname(projectJsonPath);
|
|
@@ -148,13 +154,13 @@ function createProjectFromPackageJsonNextToProjectJson(
|
|
|
148
154
|
name,
|
|
149
155
|
...nx,
|
|
150
156
|
...projectJson,
|
|
151
|
-
root
|
|
157
|
+
root
|
|
152
158
|
} as ProjectConfiguration;
|
|
153
159
|
}
|
|
154
160
|
|
|
155
161
|
function createProjectRoot(
|
|
156
162
|
configPath: string,
|
|
157
|
-
workspaceRoot: string
|
|
163
|
+
workspaceRoot: string
|
|
158
164
|
): string | null {
|
|
159
165
|
try {
|
|
160
166
|
let root = dirname(configPath);
|
package/dist/src/utils/cargo.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkLJDV7HFTjs = require('../../chunk-LJDV7HFT.js');
|
|
12
12
|
require('../../chunk-3RG5ZIWI.js');
|
|
13
13
|
|
|
14
14
|
|
|
@@ -20,4 +20,4 @@ require('../../chunk-3RG5ZIWI.js');
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
exports.INVALID_CARGO_ARGS =
|
|
23
|
+
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.runProcess = _chunkLJDV7HFTjs.runProcess;
|
package/dist/src/utils/cargo.mjs
CHANGED
package/dist/src/utils/index.js
CHANGED
|
@@ -48,7 +48,7 @@ var _chunkFYXWAGK3js = require('../../chunk-FYXWAGK3.js');
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
var
|
|
51
|
+
var _chunkLJDV7HFTjs = require('../../chunk-LJDV7HFT.js');
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
|
|
@@ -153,4 +153,4 @@ require('../../chunk-3RG5ZIWI.js');
|
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
|
|
156
|
-
exports.INVALID_CARGO_ARGS =
|
|
156
|
+
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkXZSS3YABjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkXZSS3YABjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkXZSS3YABjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkXZSS3YABjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunkYXBFVZ3Kjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.ProjectTagConstants; exports.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk3TYXXJKVjs.applyWorkspaceExecutorTokens; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getPackageInfo = _chunkYXBFVZ3Kjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunk5VY5IBBQjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunk5VY5IBBQjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkA5CKB6IJjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkA5CKB6IJjs.getProjectConfigurations; exports.getProjectPlatform = _chunk5VY5IBBQjs.getProjectPlatform; exports.getProjectRoot = _chunk5VY5IBBQjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.modifyCargoNestedTable = _chunkBWGJVRASjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkBWGJVRASjs.modifyCargoTable; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkBWGJVRASjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkBWGJVRASjs.parseCargoTomlWithTree; exports.pnpmUpdate = _chunkFYXWAGK3js.pnpmUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.stringifyCargoToml = _chunkBWGJVRASjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion;
|
package/dist/src/utils/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.272.0",
|
|
4
4
|
"description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
],
|
|
193
193
|
"peerDependencies": {
|
|
194
194
|
"markdownlint-cli2": "^0.17.2",
|
|
195
|
-
"nx": "
|
|
195
|
+
"nx": "21.0.0",
|
|
196
196
|
"prettier": "^3.5.1"
|
|
197
197
|
},
|
|
198
198
|
"peerDependenciesMeta": {
|
|
@@ -203,14 +203,14 @@
|
|
|
203
203
|
"dependencies": {
|
|
204
204
|
"@ltd/j-toml": "1.38.0",
|
|
205
205
|
"@microsoft/api-extractor": "^7.48.1",
|
|
206
|
-
"@nx/devkit": "
|
|
206
|
+
"@nx/devkit": "21.0.0",
|
|
207
207
|
"@samchon/openapi": "^2.5.3",
|
|
208
208
|
"@size-limit/esbuild": "11.1.4",
|
|
209
209
|
"@size-limit/esbuild-why": "11.1.4",
|
|
210
210
|
"@size-limit/file": "11.1.4",
|
|
211
|
-
"@storm-software/esbuild": "^0.
|
|
212
|
-
"@storm-software/prettier": "^0.
|
|
213
|
-
"@storm-software/unbuild": "^0.
|
|
211
|
+
"@storm-software/esbuild": "^0.40.1",
|
|
212
|
+
"@storm-software/prettier": "^0.50.1",
|
|
213
|
+
"@storm-software/unbuild": "^0.46.1",
|
|
214
214
|
"fs-extra": "11.2.0",
|
|
215
215
|
"glob": "^11.0.1",
|
|
216
216
|
"jiti": "^2.4.2",
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"@types/node": "^22.10.2",
|
|
232
232
|
"@types/semver": "7.5.8",
|
|
233
233
|
"defu": "6.1.4",
|
|
234
|
-
"nx": "
|
|
234
|
+
"nx": "21.0.0",
|
|
235
235
|
"pkg-types": "^1.3.1",
|
|
236
236
|
"tsup": "8.4.0",
|
|
237
237
|
"typescript": "^5.8.3"
|