@storm-software/workspace-tools 1.287.0 → 1.287.1
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 +20 -0
- package/README.md +1 -1
- package/dist/{chunk-5X2P7IL3.js → chunk-7JZOFDL2.js} +15 -5
- package/dist/{chunk-5K5OGRSL.mjs → chunk-ROQYWBA4.mjs} +15 -5
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Workspace Tools
|
|
4
4
|
|
|
5
|
+
## [1.287.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.287.0) (2025-09-13)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **pnpm-tools:** Initial check-in of `pnpm-tools` utility package
|
|
10
|
+
([3bb1916af](https://github.com/storm-software/storm-ops/commit/3bb1916af))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([f6d595334](https://github.com/storm-software/storm-ops/commit/f6d595334))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated pnpm-tools to 0.1.0
|
|
20
|
+
- Updated npm-tools to 0.1.1
|
|
21
|
+
- Updated prettier to 0.54.1
|
|
22
|
+
- Updated esbuild to 0.49.1
|
|
23
|
+
- Updated unbuild to 0.53.1
|
|
24
|
+
|
|
5
25
|
## [1.286.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.286.0) (2025-09-13)
|
|
6
26
|
|
|
7
27
|
### 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 -->
|
|
@@ -28,15 +28,17 @@ var _semver = require('semver');
|
|
|
28
28
|
var _jsyaml = require('js-yaml');
|
|
29
29
|
|
|
30
30
|
|
|
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)) {
|
|
34
|
-
|
|
34
|
+
throw new Error(
|
|
35
35
|
`No \`pnpm-workspace.yaml\` file found in workspace root (searched in: ${pnpmWorkspacePath}).`
|
|
36
36
|
);
|
|
37
|
-
return;
|
|
38
37
|
}
|
|
39
|
-
return
|
|
38
|
+
return pnpmWorkspacePath;
|
|
39
|
+
}
|
|
40
|
+
async function readPnpmWorkspaceFile(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.call(void 0, process.cwd())) {
|
|
41
|
+
return _jsyaml.load.call(void 0, getPnpmWorkspaceFilePath(workspaceRoot));
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
// ../pnpm-tools/src/helpers/catalog.ts
|
|
@@ -49,7 +51,15 @@ async function getCatalog(workspaceRoot = _chunkHNFKVXBVjs.findWorkspaceRoot.cal
|
|
|
49
51
|
})
|
|
50
52
|
);
|
|
51
53
|
}
|
|
52
|
-
|
|
54
|
+
if (!pnpmWorkspaceFile) {
|
|
55
|
+
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
+
}
|
|
57
|
+
if (!pnpmWorkspaceFile.catalog) {
|
|
58
|
+
console.warn(
|
|
59
|
+
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}`
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
return pnpmWorkspaceFile.catalog;
|
|
53
63
|
}
|
|
54
64
|
|
|
55
65
|
// ../pnpm-tools/src/helpers/replace-deps-aliases.ts
|
|
@@ -28,15 +28,17 @@ import { coerce, gt, valid } from "semver";
|
|
|
28
28
|
import { dump, load } from "js-yaml";
|
|
29
29
|
import { existsSync } from "node:fs";
|
|
30
30
|
import { writeFile } from "node:fs/promises";
|
|
31
|
-
|
|
31
|
+
function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
32
32
|
const pnpmWorkspacePath = joinPaths(workspaceRoot, "pnpm-workspace.yaml");
|
|
33
33
|
if (!existsSync(pnpmWorkspacePath)) {
|
|
34
|
-
|
|
34
|
+
throw new Error(
|
|
35
35
|
`No \`pnpm-workspace.yaml\` file found in workspace root (searched in: ${pnpmWorkspacePath}).`
|
|
36
36
|
);
|
|
37
|
-
return;
|
|
38
37
|
}
|
|
39
|
-
return
|
|
38
|
+
return pnpmWorkspacePath;
|
|
39
|
+
}
|
|
40
|
+
async function readPnpmWorkspaceFile(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
41
|
+
return load(getPnpmWorkspaceFilePath(workspaceRoot));
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
// ../pnpm-tools/src/helpers/catalog.ts
|
|
@@ -49,7 +51,15 @@ async function getCatalog(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
|
49
51
|
})
|
|
50
52
|
);
|
|
51
53
|
}
|
|
52
|
-
|
|
54
|
+
if (!pnpmWorkspaceFile) {
|
|
55
|
+
throw new Error("No pnpm-workspace.yaml file found");
|
|
56
|
+
}
|
|
57
|
+
if (!pnpmWorkspaceFile.catalog) {
|
|
58
|
+
console.warn(
|
|
59
|
+
`No catalog found in pnpm-workspace.yaml file located in workspace root: ${workspaceRoot}`
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
return pnpmWorkspaceFile.catalog;
|
|
53
63
|
}
|
|
54
64
|
|
|
55
65
|
// ../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 _chunk7JZOFDL2js = require('./chunk-7JZOFDL2.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 = _chunk7JZOFDL2js.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 _chunk7JZOFDL2js = require('./chunk-7JZOFDL2.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 = _chunk7JZOFDL2js.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 _chunk7JZOFDL2js = require('../../../chunk-7JZOFDL2.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 = _chunk7JZOFDL2js.LARGE_BUFFER; exports.default = _chunk7JZOFDL2js.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.1",
|
|
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",
|
|
@@ -237,5 +237,5 @@
|
|
|
237
237
|
"publishConfig": { "access": "public" },
|
|
238
238
|
"executors": "./executors.json",
|
|
239
239
|
"generators": "./generators.json",
|
|
240
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "ba051503514612b8e75fa46cc0fe6f95b12898b0"
|
|
241
241
|
}
|