@storm-software/workspace-tools 1.249.1 → 1.249.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 +16 -0
- package/README.md +1 -1
- package/config/base.json +6 -18
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +4 -4
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +3 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.249.3 (2025-02-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Resolved issues with invalid target configurations ([664e05fcb](https://github.com/storm-software/storm-ops/commit/664e05fcb))
|
|
6
|
+
|
|
7
|
+
## 1.249.2 (2025-02-04)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **markdownlint:** Resolve issue with invalid paths excluded from `ignores` config ([6e264418a](https://github.com/storm-software/storm-ops/commit/6e264418a))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files ([481420a10](https://github.com/storm-software/storm-ops/commit/481420a10))
|
|
16
|
+
|
|
1
17
|
## 1.249.1 (2025-02-04)
|
|
2
18
|
|
|
3
19
|
### Bug Fixes
|
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 -->
|
package/config/base.json
CHANGED
|
@@ -309,8 +309,7 @@
|
|
|
309
309
|
"dependsOn": ["^lint-markdown"],
|
|
310
310
|
"executor": "nx:run-commands",
|
|
311
311
|
"options": {
|
|
312
|
-
"command": "pnpm exec markdownlint-cli2 \"{projectRoot}/**/*.{md,mdx,markdown}\" --config=\"./node_modules/@storm-software/markdownlint/config/.markdownlint-cli2.jsonc\""
|
|
313
|
-
"color": true
|
|
312
|
+
"command": "pnpm exec markdownlint-cli2 \"{projectRoot}/**/*.{md,mdx,markdown}\" --config=\"./node_modules/@storm-software/markdownlint/config/.markdownlint-cli2.jsonc\""
|
|
314
313
|
}
|
|
315
314
|
},
|
|
316
315
|
"lint": {
|
|
@@ -328,8 +327,7 @@
|
|
|
328
327
|
"dependsOn": ["^format-toml"],
|
|
329
328
|
"executor": "nx:run-commands",
|
|
330
329
|
"options": {
|
|
331
|
-
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\""
|
|
332
|
-
"color": true
|
|
330
|
+
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/config.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\""
|
|
333
331
|
}
|
|
334
332
|
},
|
|
335
333
|
"format-readme": {
|
|
@@ -344,8 +342,7 @@
|
|
|
344
342
|
"dependsOn": ["^format-readme"],
|
|
345
343
|
"executor": "nx:run-commands",
|
|
346
344
|
"options": {
|
|
347
|
-
"command": "pnpm exec storm-git readme-gen --templates=\"./tools/readme-templates\" --project=\"{projectName}\""
|
|
348
|
-
"color": true
|
|
345
|
+
"command": "pnpm exec storm-git readme-gen --templates=\"./tools/readme-templates\" --project=\"{projectName}\""
|
|
349
346
|
}
|
|
350
347
|
},
|
|
351
348
|
"format-prettier": {
|
|
@@ -353,8 +350,7 @@
|
|
|
353
350
|
"dependsOn": ["^format-prettier"],
|
|
354
351
|
"executor": "nx:run-commands",
|
|
355
352
|
"options": {
|
|
356
|
-
"command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"./node_modules/@storm-software/prettier/config.json\" --ignore-path=\"./node_modules/@storm-software/prettier/.prettierignore\" --cache --cache-location=\"./tmp/prettier/{projectRoot}\" "
|
|
357
|
-
"color": true
|
|
353
|
+
"command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"./node_modules/@storm-software/prettier/config.json\" --ignore-path=\"./node_modules/@storm-software/prettier/.prettierignore\" --cache --cache-location=\"./tmp/prettier/{projectRoot}\" "
|
|
358
354
|
}
|
|
359
355
|
},
|
|
360
356
|
"format": {
|
|
@@ -365,11 +361,7 @@
|
|
|
365
361
|
"format-readme",
|
|
366
362
|
"format-prettier",
|
|
367
363
|
"^format"
|
|
368
|
-
]
|
|
369
|
-
"executor": "nx:run-commands",
|
|
370
|
-
"options": {
|
|
371
|
-
"command": "echo Formatted the project files in \"{projectRoot}\" "
|
|
372
|
-
}
|
|
364
|
+
]
|
|
373
365
|
},
|
|
374
366
|
"clean": {
|
|
375
367
|
"inputs": ["default", "^production"],
|
|
@@ -396,10 +388,7 @@
|
|
|
396
388
|
"build": {
|
|
397
389
|
"inputs": ["default", "^production"],
|
|
398
390
|
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
|
|
399
|
-
"dependsOn": ["build-base", "build-compile", "build-untyped", "^build"]
|
|
400
|
-
"options": {
|
|
401
|
-
"command": "echo Built the project files in \"{projectRoot}\" "
|
|
402
|
-
}
|
|
391
|
+
"dependsOn": ["build-base", "build-compile", "build-untyped", "^build"]
|
|
403
392
|
},
|
|
404
393
|
"rebuild": {
|
|
405
394
|
"inputs": ["default", "^production"],
|
|
@@ -407,7 +396,6 @@
|
|
|
407
396
|
"dependsOn": ["clean", "^build"],
|
|
408
397
|
"options": {
|
|
409
398
|
"command": "pnpm exec nx run {projectName}:build",
|
|
410
|
-
"color": true,
|
|
411
399
|
"cwd": "{workspaceRoot}"
|
|
412
400
|
}
|
|
413
401
|
},
|
package/dist/executors.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import "./chunk-V7YZ3666.mjs";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
3
|
+
sizeLimitExecutorFn
|
|
4
|
+
} from "./chunk-KM47X5XW.mjs";
|
|
5
5
|
import {
|
|
6
6
|
tsdownExecutorFn
|
|
7
7
|
} from "./chunk-UF3YMASN.mjs";
|
|
8
8
|
import {
|
|
9
|
-
|
|
10
|
-
} from "./chunk-
|
|
9
|
+
typiaExecutorFn
|
|
10
|
+
} from "./chunk-2KNHEXJQ.mjs";
|
|
11
11
|
import {
|
|
12
12
|
unbuildExecutorFn
|
|
13
13
|
} from "./chunk-7H4PXXWW.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -10,10 +10,10 @@ var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
|
10
10
|
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -8,12 +8,12 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
presetGeneratorFn
|
|
10
10
|
} from "./chunk-QDZUYDVM.mjs";
|
|
11
|
-
import {
|
|
12
|
-
configSchemaGeneratorFn
|
|
13
|
-
} from "./chunk-S73S6XCY.mjs";
|
|
14
11
|
import {
|
|
15
12
|
browserLibraryGeneratorFn
|
|
16
13
|
} from "./chunk-7GW75RON.mjs";
|
|
14
|
+
import {
|
|
15
|
+
configSchemaGeneratorFn
|
|
16
|
+
} from "./chunk-S73S6XCY.mjs";
|
|
17
17
|
import {
|
|
18
18
|
initGenerator
|
|
19
19
|
} from "./chunk-X3GPVZMH.mjs";
|
package/dist/index.js
CHANGED
|
@@ -48,13 +48,13 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
|
|
|
48
48
|
require('./chunk-3J53KHVV.js');
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
var
|
|
51
|
+
var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
var
|
|
57
|
+
var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
|
|
@@ -109,10 +109,10 @@ var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
|
109
109
|
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
var
|
|
112
|
+
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
var
|
|
115
|
+
var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
|
package/dist/index.mjs
CHANGED
|
@@ -47,14 +47,14 @@ import {
|
|
|
47
47
|
} from "./chunk-V7IOKRJA.mjs";
|
|
48
48
|
import "./chunk-V7YZ3666.mjs";
|
|
49
49
|
import {
|
|
50
|
-
|
|
51
|
-
} from "./chunk-
|
|
50
|
+
sizeLimitExecutorFn
|
|
51
|
+
} from "./chunk-KM47X5XW.mjs";
|
|
52
52
|
import {
|
|
53
53
|
tsdownExecutorFn
|
|
54
54
|
} from "./chunk-UF3YMASN.mjs";
|
|
55
55
|
import {
|
|
56
|
-
|
|
57
|
-
} from "./chunk-
|
|
56
|
+
typiaExecutorFn
|
|
57
|
+
} from "./chunk-2KNHEXJQ.mjs";
|
|
58
58
|
import {
|
|
59
59
|
unbuildExecutorFn
|
|
60
60
|
} from "./chunk-7H4PXXWW.mjs";
|
|
@@ -107,12 +107,12 @@ import {
|
|
|
107
107
|
import {
|
|
108
108
|
presetGeneratorFn
|
|
109
109
|
} from "./chunk-QDZUYDVM.mjs";
|
|
110
|
-
import {
|
|
111
|
-
configSchemaGeneratorFn
|
|
112
|
-
} from "./chunk-S73S6XCY.mjs";
|
|
113
110
|
import {
|
|
114
111
|
browserLibraryGeneratorFn
|
|
115
112
|
} from "./chunk-7GW75RON.mjs";
|
|
113
|
+
import {
|
|
114
|
+
configSchemaGeneratorFn
|
|
115
|
+
} from "./chunk-S73S6XCY.mjs";
|
|
116
116
|
import {
|
|
117
117
|
initGenerator
|
|
118
118
|
} from "./chunk-X3GPVZMH.mjs";
|
package/package.json
CHANGED