@storm-software/workspace-tools 1.287.1 → 1.287.3
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 +1 -1
- package/dist/{chunk-ROQYWBA4.mjs → chunk-6NZIY22A.mjs} +35 -17
- package/dist/{chunk-7JZOFDL2.js → chunk-6P42TFF5.js} +28 -10
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/src/executors/npm-publish/executor.js +2 -2
- package/dist/src/executors/npm-publish/executor.mjs +1 -1
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.287.2](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.287.2) (2025-09-15)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([cc9535d62](https://github.com/storm-software/storm-ops/commit/cc9535d62))
|
|
11
|
+
- **pnpm-tools:** Update script file name and write workspace contents to
|
|
12
|
+
warning message
|
|
13
|
+
([ac72547b3](https://github.com/storm-software/storm-ops/commit/ac72547b3))
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([beeeb4edc](https://github.com/storm-software/storm-ops/commit/beeeb4edc))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated pnpm-tools to 0.1.3
|
|
20
|
+
- Updated npm-tools to 0.1.3
|
|
21
|
+
- Updated prettier to 0.54.2
|
|
22
|
+
- Updated esbuild to 0.49.3
|
|
23
|
+
- Updated unbuild to 0.53.3
|
|
24
|
+
|
|
25
|
+
## [1.287.1](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.287.1) (2025-09-15)
|
|
26
|
+
|
|
27
|
+
### Miscellaneous
|
|
28
|
+
|
|
29
|
+
- **monorepo:** Update workspace package links
|
|
30
|
+
([dd47cb757](https://github.com/storm-software/storm-ops/commit/dd47cb757))
|
|
31
|
+
|
|
32
|
+
### Updated Dependencies
|
|
33
|
+
|
|
34
|
+
- Updated pnpm-tools to 0.1.2
|
|
35
|
+
- Updated npm-tools to 0.1.2
|
|
36
|
+
- Updated esbuild to 0.49.2
|
|
37
|
+
- Updated unbuild to 0.53.2
|
|
38
|
+
|
|
5
39
|
## [1.287.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.287.0) (2025-09-13)
|
|
6
40
|
|
|
7
41
|
### Features
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -18,16 +18,16 @@ import {
|
|
|
18
18
|
readCachedProjectGraph
|
|
19
19
|
} from "@nx/devkit";
|
|
20
20
|
import { existsSync as existsSync2 } from "node:fs";
|
|
21
|
-
import { readFile, writeFile as writeFile2 } from "node:fs/promises";
|
|
21
|
+
import { readFile as readFile2, writeFile as writeFile2 } from "node:fs/promises";
|
|
22
22
|
import { format } from "prettier";
|
|
23
23
|
|
|
24
24
|
// ../pnpm-tools/src/helpers/catalog.ts
|
|
25
25
|
import { coerce, gt, valid } from "semver";
|
|
26
26
|
|
|
27
27
|
// ../pnpm-tools/src/helpers/pnpm-workspace.ts
|
|
28
|
-
import { dump, load } from "js-yaml";
|
|
29
28
|
import { existsSync } from "node:fs";
|
|
30
|
-
import { writeFile } from "node:fs/promises";
|
|
29
|
+
import { readFile, writeFile } from "node:fs/promises";
|
|
30
|
+
import { parse, stringify } from "yaml";
|
|
31
31
|
function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
32
32
|
const pnpmWorkspacePath = joinPaths(workspaceRoot, "pnpm-workspace.yaml");
|
|
33
33
|
if (!existsSync(pnpmWorkspacePath)) {
|
|
@@ -38,34 +38,52 @@ function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd(
|
|
|
38
38
|
return pnpmWorkspacePath;
|
|
39
39
|
}
|
|
40
40
|
async function readPnpmWorkspaceFile(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
41
|
-
|
|
41
|
+
const result = await readFile(
|
|
42
|
+
getPnpmWorkspaceFilePath(workspaceRoot),
|
|
43
|
+
"utf8"
|
|
44
|
+
);
|
|
45
|
+
if (!result) {
|
|
46
|
+
return void 0;
|
|
47
|
+
}
|
|
48
|
+
return parse(result);
|
|
42
49
|
}
|
|
43
50
|
|
|
44
51
|
// ../pnpm-tools/src/helpers/catalog.ts
|
|
45
|
-
async function
|
|
52
|
+
async function getCatalogSafe(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
46
53
|
const pnpmWorkspaceFile = await readPnpmWorkspaceFile(workspaceRoot);
|
|
54
|
+
if (!pnpmWorkspaceFile) {
|
|
55
|
+
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
+
}
|
|
47
57
|
if (pnpmWorkspaceFile?.catalog) {
|
|
48
58
|
return Object.fromEntries(
|
|
49
59
|
Object.entries(pnpmWorkspaceFile.catalog).map(([key, value]) => {
|
|
50
60
|
return [key, value.replaceAll(/^"/g, "").replaceAll(/"$/g, "")];
|
|
51
61
|
})
|
|
52
62
|
);
|
|
53
|
-
}
|
|
54
|
-
if (!pnpmWorkspaceFile) {
|
|
55
|
-
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
-
}
|
|
57
|
-
if (!pnpmWorkspaceFile.catalog) {
|
|
63
|
+
} else {
|
|
58
64
|
console.warn(
|
|
59
|
-
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}
|
|
65
|
+
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}
|
|
66
|
+
File content: ${JSON.stringify(
|
|
67
|
+
pnpmWorkspaceFile,
|
|
68
|
+
null,
|
|
69
|
+
2
|
|
70
|
+
)}`
|
|
60
71
|
);
|
|
61
72
|
}
|
|
62
|
-
return
|
|
73
|
+
return void 0;
|
|
74
|
+
}
|
|
75
|
+
async function getCatalog(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
76
|
+
const catalog = await getCatalogSafe(workspaceRoot);
|
|
77
|
+
if (!catalog) {
|
|
78
|
+
throw new Error("No catalog entries found in pnpm-workspace.yaml file");
|
|
79
|
+
}
|
|
80
|
+
return catalog;
|
|
63
81
|
}
|
|
64
82
|
|
|
65
83
|
// ../pnpm-tools/src/helpers/replace-deps-aliases.ts
|
|
66
84
|
async function replaceDepsAliases(packageRoot = process.cwd(), workspaceRoot = findWorkspaceRoot(packageRoot)) {
|
|
67
85
|
const packageJsonPath = joinPaths(packageRoot, "package.json");
|
|
68
|
-
const packageJsonFile = await
|
|
86
|
+
const packageJsonFile = await readFile2(packageJsonPath, "utf8");
|
|
69
87
|
if (!packageJsonFile) {
|
|
70
88
|
throw new Error(
|
|
71
89
|
"No package.json file found in package root: " + packageRoot
|
|
@@ -131,7 +149,7 @@ async function replaceDepsAliases(packageRoot = process.cwd(), workspaceRoot = f
|
|
|
131
149
|
"package.json"
|
|
132
150
|
);
|
|
133
151
|
if (existsSync2(projectPackageJsonPath)) {
|
|
134
|
-
const projectPackageJsonContent = await
|
|
152
|
+
const projectPackageJsonContent = await readFile2(
|
|
135
153
|
projectPackageJsonPath,
|
|
136
154
|
"utf8"
|
|
137
155
|
);
|
|
@@ -188,7 +206,7 @@ async function replaceDepsAliases(packageRoot = process.cwd(), workspaceRoot = f
|
|
|
188
206
|
|
|
189
207
|
// src/executors/npm-publish/executor.ts
|
|
190
208
|
import { execSync } from "node:child_process";
|
|
191
|
-
import { readFile as
|
|
209
|
+
import { readFile as readFile3, writeFile as writeFile3 } from "node:fs/promises";
|
|
192
210
|
import { format as format2 } from "prettier";
|
|
193
211
|
var LARGE_BUFFER = 1024 * 1e6;
|
|
194
212
|
async function npmPublishExecutorFn(options, context) {
|
|
@@ -212,13 +230,13 @@ async function npmPublishExecutorFn(options, context) {
|
|
|
212
230
|
context.projectsConfigurations.projects[context.projectName].root
|
|
213
231
|
) : packageRoot;
|
|
214
232
|
const packageJsonPath = joinPaths(packageRoot, "package.json");
|
|
215
|
-
const packageJsonFile = await
|
|
233
|
+
const packageJsonFile = await readFile3(packageJsonPath, "utf8");
|
|
216
234
|
if (!packageJsonFile) {
|
|
217
235
|
throw new Error(`Could not find \`package.json\` at ${packageJsonPath}`);
|
|
218
236
|
}
|
|
219
237
|
const packageJson = JSON.parse(packageJsonFile);
|
|
220
238
|
const projectPackageJsonPath = joinPaths(projectRoot, "package.json");
|
|
221
|
-
const projectPackageJsonFile = await
|
|
239
|
+
const projectPackageJsonFile = await readFile3(projectPackageJsonPath, "utf8");
|
|
222
240
|
if (!projectPackageJsonFile) {
|
|
223
241
|
throw new Error(
|
|
224
242
|
`Could not find \`package.json\` at ${projectPackageJsonPath}`
|
|
@@ -25,9 +25,9 @@ var _prettier = require('prettier');
|
|
|
25
25
|
var _semver = require('semver');
|
|
26
26
|
|
|
27
27
|
// ../pnpm-tools/src/helpers/pnpm-workspace.ts
|
|
28
|
-
var _jsyaml = require('js-yaml');
|
|
29
28
|
|
|
30
29
|
|
|
30
|
+
var _yaml = require('yaml');
|
|
31
31
|
function getPnpmWorkspaceFilePath(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, process.cwd())) {
|
|
32
32
|
const pnpmWorkspacePath = _chunk53DNHF7Bjs.joinPaths.call(void 0, workspaceRoot, "pnpm-workspace.yaml");
|
|
33
33
|
if (!_fs.existsSync.call(void 0, pnpmWorkspacePath)) {
|
|
@@ -38,28 +38,46 @@ function getPnpmWorkspaceFilePath(workspaceRoot = _chunkHNFKVXBVjs.findWorkspace
|
|
|
38
38
|
return pnpmWorkspacePath;
|
|
39
39
|
}
|
|
40
40
|
async function readPnpmWorkspaceFile(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, process.cwd())) {
|
|
41
|
-
|
|
41
|
+
const result = await _promises.readFile.call(void 0,
|
|
42
|
+
getPnpmWorkspaceFilePath(workspaceRoot),
|
|
43
|
+
"utf8"
|
|
44
|
+
);
|
|
45
|
+
if (!result) {
|
|
46
|
+
return void 0;
|
|
47
|
+
}
|
|
48
|
+
return _yaml.parse.call(void 0, result);
|
|
42
49
|
}
|
|
43
50
|
|
|
44
51
|
// ../pnpm-tools/src/helpers/catalog.ts
|
|
45
|
-
async function
|
|
52
|
+
async function getCatalogSafe(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, process.cwd())) {
|
|
46
53
|
const pnpmWorkspaceFile = await readPnpmWorkspaceFile(workspaceRoot);
|
|
54
|
+
if (!pnpmWorkspaceFile) {
|
|
55
|
+
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
+
}
|
|
47
57
|
if (_optionalChain([pnpmWorkspaceFile, 'optionalAccess', _ => _.catalog])) {
|
|
48
58
|
return Object.fromEntries(
|
|
49
59
|
Object.entries(pnpmWorkspaceFile.catalog).map(([key, value]) => {
|
|
50
60
|
return [key, value.replaceAll(/^"/g, "").replaceAll(/"$/g, "")];
|
|
51
61
|
})
|
|
52
62
|
);
|
|
53
|
-
}
|
|
54
|
-
if (!pnpmWorkspaceFile) {
|
|
55
|
-
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
-
}
|
|
57
|
-
if (!pnpmWorkspaceFile.catalog) {
|
|
63
|
+
} else {
|
|
58
64
|
console.warn(
|
|
59
|
-
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}
|
|
65
|
+
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}
|
|
66
|
+
File content: ${JSON.stringify(
|
|
67
|
+
pnpmWorkspaceFile,
|
|
68
|
+
null,
|
|
69
|
+
2
|
|
70
|
+
)}`
|
|
60
71
|
);
|
|
61
72
|
}
|
|
62
|
-
return
|
|
73
|
+
return void 0;
|
|
74
|
+
}
|
|
75
|
+
async function getCatalog(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, process.cwd())) {
|
|
76
|
+
const catalog = await getCatalogSafe(workspaceRoot);
|
|
77
|
+
if (!catalog) {
|
|
78
|
+
throw new Error("No catalog entries found in pnpm-workspace.yaml file");
|
|
79
|
+
}
|
|
80
|
+
return catalog;
|
|
63
81
|
}
|
|
64
82
|
|
|
65
83
|
// ../pnpm-tools/src/helpers/replace-deps-aliases.ts
|
package/dist/executors.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7VDOGZYO.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk6P42TFF5js = require('./chunk-6P42TFF5.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkPNWYSTCQjs = require('./chunk-PNWYSTCQ.js');
|
|
@@ -55,4 +55,4 @@ require('./chunk-53DNHF7B.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
exports.LARGE_BUFFER =
|
|
58
|
+
exports.LARGE_BUFFER = _chunk6P42TFF5js.LARGE_BUFFER; exports.cargoBuildExecutor = _chunk2JYSOWHXjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkUH5PNSPJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkDY4PYCP6js.cargoClippyExecutor; exports.cargoDocExecutor = _chunkEIZKPKJHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkS5DC4QM3js.cargoFormatExecutor; exports.esbuildExecutorFn = _chunk7Y353S7Djs.esbuildExecutorFn; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkPNWYSTCQjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkG2ZFORXGjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7IF3RQD4js.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -50,7 +50,7 @@ var _chunkUZ63ALZQjs = require('./chunk-UZ63ALZQ.js');
|
|
|
50
50
|
require('./chunk-7VDOGZYO.js');
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
var
|
|
53
|
+
var _chunk6P42TFF5js = require('./chunk-6P42TFF5.js');
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
var _chunkPNWYSTCQjs = require('./chunk-PNWYSTCQ.js');
|
|
@@ -280,4 +280,4 @@ var _chunk7CJRMBX3js = require('./chunk-7CJRMBX3.js');
|
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
|
|
283
|
-
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER =
|
|
283
|
+
exports.INVALID_CARGO_ARGS = _chunkLJDV7HFTjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunk6P42TFF5js.LARGE_BUFFER; exports.LOCK_FILES = _chunkXZSS3YABjs.LOCK_FILES; exports.NAMED_INPUTS = _chunkIBTPJDV6js.NAMED_INPUTS; 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 = _chunk73IC2JQVjs.PackageManagerTypes; exports.ProjectTagConstants = _chunkAX3RSZT7js.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.RELEASE = _chunkIBTPJDV6js.RELEASE; exports.YARN_LOCK_FILE = _chunkXZSS3YABjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkXZSS3YABjs.YARN_LOCK_PATH; exports.addPackageJsonGitHead = _chunk73IC2JQVjs.addPackageJsonGitHead; exports.addPluginProjectTag = _chunkAX3RSZT7js.addPluginProjectTag; exports.addProjectTag = _chunkAX3RSZT7js.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunk4DLKOUQAjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunk7OBL2GKKjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkLJDV7HFTjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk5ZFTWEKBjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunk2JYSOWHXjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkUH5PNSPJjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkDY4PYCP6js.cargoClippyExecutor; exports.cargoCommand = _chunkLJDV7HFTjs.cargoCommand; exports.cargoCommandSync = _chunkLJDV7HFTjs.cargoCommandSync; exports.cargoDocExecutor = _chunkEIZKPKJHjs.cargoDocExecutor; exports.cargoFormatExecutor = _chunkS5DC4QM3js.cargoFormatExecutor; exports.cargoMetadata = _chunkLJDV7HFTjs.cargoMetadata; exports.cargoRunCommand = _chunkLJDV7HFTjs.cargoRunCommand; exports.childProcess = _chunkLJDV7HFTjs.childProcess; exports.configSchemaGeneratorFn = _chunkL7Z66BRKjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkQVYCDINGjs.createCliOptions; exports.createProjectTsConfigJson = _chunkQKQRWKYXjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunk7Y353S7Djs.esbuildExecutorFn; exports.eslintVersion = _chunkSZWM7COVjs.eslintVersion; exports.formatProjectTag = _chunkAX3RSZT7js.formatProjectTag; exports.getLockFileDependencies = _chunkXZSS3YABjs.getLockFileDependencies; exports.getLockFileName = _chunkXZSS3YABjs.getLockFileName; exports.getLockFileNodes = _chunkXZSS3YABjs.getLockFileNodes; exports.getOutputPath = _chunkQKQRWKYXjs.getOutputPath; exports.getPackageInfo = _chunk73IC2JQVjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkJ6F3WHRBjs.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkJ6F3WHRBjs.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkUZ63ALZQjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkUZ63ALZQjs.getProjectConfigurations; exports.getProjectPlatform = _chunkJ6F3WHRBjs.getProjectPlatform; exports.getProjectRoot = _chunkJ6F3WHRBjs.getProjectRoot; exports.getProjectTag = _chunkAX3RSZT7js.getProjectTag; exports.getRegistryVersion = _chunkWRXLSZ6Ijs.getRegistryVersion; exports.getRoot = _chunkJ6F3WHRBjs.getRoot; exports.getTypiaTransform = _chunk6EMYX25Vjs.getTypiaTransform; exports.hasProjectTag = _chunkAX3RSZT7js.hasProjectTag; exports.initGenerator = _chunkOKSECMVKjs.initGenerator; exports.isEqualProjectTag = _chunkAX3RSZT7js.isEqualProjectTag; exports.isExternal = _chunkLJDV7HFTjs.isExternal; exports.lintStagedVersion = _chunkSZWM7COVjs.lintStagedVersion; exports.lockFileExists = _chunkXZSS3YABjs.lockFileExists; exports.neutralLibraryGeneratorFn = _chunkG3LFGXX3js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkR46H5YPGjs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkSZWM7COVjs.nodeVersion; exports.normalizeOptions = _chunkQKQRWKYXjs.normalizeOptions; exports.nxVersion = _chunkSZWM7COVjs.nxVersion; exports.pnpmVersion = _chunkSZWM7COVjs.pnpmVersion; exports.presetGeneratorFn = _chunk3DQHYRAWjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkSZWM7COVjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkSZWM7COVjs.prettierPrismaVersion; exports.prettierVersion = _chunkSZWM7COVjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkQ27SXGNAjs.releaseVersionGeneratorFn; exports.runProcess = _chunkLJDV7HFTjs.runProcess; exports.semanticReleaseVersion = _chunkSZWM7COVjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunkAX3RSZT7js.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkPNWYSTCQjs.sizeLimitExecutorFn; exports.swcCliVersion = _chunkSZWM7COVjs.swcCliVersion; exports.swcCoreVersion = _chunkSZWM7COVjs.swcCoreVersion; exports.swcHelpersVersion = _chunkSZWM7COVjs.swcHelpersVersion; exports.swcNodeVersion = _chunkSZWM7COVjs.swcNodeVersion; exports.tsLibVersion = _chunkSZWM7COVjs.tsLibVersion; exports.tsupVersion = _chunkSZWM7COVjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkQKQRWKYXjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkSZWM7COVjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkCLMAB7TAjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk2AVWFUXPjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkSZWM7COVjs.typescriptVersion; exports.typiaExecutorFn = _chunkG2ZFORXGjs.typiaExecutorFn; exports.unbuildExecutorFn = _chunk7IF3RQD4js.unbuildExecutorFn; exports.verdaccioVersion = _chunkSZWM7COVjs.verdaccioVersion; exports.withNamedInputs = _chunkIBTPJDV6js.withNamedInputs; exports.withRunExecutor = _chunkPQGJJ2VCjs.withRunExecutor; exports.withRunGenerator = _chunkVGRHMX4Gjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk6P42TFF5js = require('../../../chunk-6P42TFF5.js');
|
|
5
5
|
require('../../../chunk-73IC2JQV.js');
|
|
6
6
|
require('../../../chunk-DA53ZKBY.js');
|
|
7
7
|
require('../../../chunk-452FQZ3B.js');
|
|
@@ -13,4 +13,4 @@ require('../../../chunk-53DNHF7B.js');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
exports.LARGE_BUFFER =
|
|
16
|
+
exports.LARGE_BUFFER = _chunk6P42TFF5js.LARGE_BUFFER; exports.default = _chunk6P42TFF5js.npmPublishExecutorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.287.
|
|
3
|
+
"version": "1.287.3",
|
|
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,8 +192,8 @@
|
|
|
192
192
|
],
|
|
193
193
|
"peerDependencies": {
|
|
194
194
|
"markdownlint-cli2": "^0.17.2",
|
|
195
|
-
"nx": "
|
|
196
|
-
"prettier": "
|
|
195
|
+
"nx": "^21.4.1",
|
|
196
|
+
"prettier": "^3.5.1"
|
|
197
197
|
},
|
|
198
198
|
"peerDependenciesMeta": {
|
|
199
199
|
"markdownlint-cli2": { "optional": false },
|
|
@@ -201,41 +201,41 @@
|
|
|
201
201
|
"prettier": { "optional": false }
|
|
202
202
|
},
|
|
203
203
|
"dependencies": {
|
|
204
|
-
"@ltd/j-toml": "
|
|
205
|
-
"@microsoft/api-extractor": "
|
|
206
|
-
"@nx/devkit": "
|
|
204
|
+
"@ltd/j-toml": "1.38.0",
|
|
205
|
+
"@microsoft/api-extractor": "^7.48.1",
|
|
206
|
+
"@nx/devkit": "^21.4.1",
|
|
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": "
|
|
212
|
-
"@storm-software/npm-tools": "
|
|
213
|
-
"@storm-software/pnpm-tools": "
|
|
214
|
-
"@storm-software/prettier": "
|
|
215
|
-
"@storm-software/unbuild": "
|
|
211
|
+
"@storm-software/esbuild": "^0.49.4",
|
|
212
|
+
"@storm-software/npm-tools": "^0.1.4",
|
|
213
|
+
"@storm-software/pnpm-tools": "^0.1.4",
|
|
214
|
+
"@storm-software/prettier": "^0.54.3",
|
|
215
|
+
"@storm-software/unbuild": "^0.53.4",
|
|
216
216
|
"fs-extra": "11.2.0",
|
|
217
|
-
"glob": "
|
|
218
|
-
"jiti": "
|
|
217
|
+
"glob": "^11.0.1",
|
|
218
|
+
"jiti": "^2.4.2",
|
|
219
219
|
"markdownlint-cli2": "^0.17.2",
|
|
220
220
|
"micromatch": "^4.0.8",
|
|
221
221
|
"semver": "7.6.2",
|
|
222
222
|
"size-limit": "11.1.4",
|
|
223
|
-
"typia": "
|
|
224
|
-
"untyped": "
|
|
225
|
-
"zod": "
|
|
223
|
+
"typia": "^7.5.0",
|
|
224
|
+
"untyped": "^1.5.2",
|
|
225
|
+
"zod": "^4.0.2"
|
|
226
226
|
},
|
|
227
227
|
"devDependencies": {
|
|
228
228
|
"@types/micromatch": "^4.0.9",
|
|
229
|
-
"@types/node": "
|
|
229
|
+
"@types/node": "^22.10.2",
|
|
230
230
|
"@types/semver": "7.5.8",
|
|
231
|
-
"defu": "
|
|
232
|
-
"nx": "
|
|
233
|
-
"pkg-types": "
|
|
234
|
-
"tsup": "
|
|
231
|
+
"defu": "6.1.4",
|
|
232
|
+
"nx": "^21.4.1",
|
|
233
|
+
"pkg-types": "^1.3.1",
|
|
234
|
+
"tsup": "8.4.0",
|
|
235
235
|
"typescript": "^5.9.2"
|
|
236
236
|
},
|
|
237
237
|
"publishConfig": { "access": "public" },
|
|
238
238
|
"executors": "./executors.json",
|
|
239
239
|
"generators": "./generators.json",
|
|
240
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "130c0445a406e976d0302d764282acc0b39bb1e2"
|
|
241
241
|
}
|