@storm-software/workspace-tools 1.109.0 β 1.111.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 +16 -0
- package/README.md +9 -5
- package/config/nx.json +13 -3
- package/index.js +1 -15
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +1 -15
- package/src/executors/rolldown/executor.js +1 -10
- package/src/executors/tsup/executor.js +1 -10
- package/src/executors/tsup-browser/executor.js +1 -10
- package/src/executors/tsup-neutral/executor.js +1 -10
- package/src/executors/tsup-node/executor.js +1 -10
- package/src/executors/typia/executor.js +1 -10
- package/src/executors/unbuild/executor.js +1 -10
- package/src/generators/browser-library/generator.js +1 -8
- package/src/generators/config-schema/generator.js +1 -8
- package/src/generators/neutral-library/generator.js +1 -8
- package/src/generators/node-library/generator.js +1 -8
- package/src/generators/preset/generator.js +1 -8
- package/src/generators/release-version/generator.js +1 -8
- package/src/plugins/rust/index.js +11 -1
- package/src/plugins/typescript/index.js +14 -0
- package/src/utils/index.js +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 1.111.0 (2024-07-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### π Features
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Added a table of content to the `README.md` header template ([227c234f](https://github.com/storm-software/storm-ops/commit/227c234f))
|
|
7
|
+
|
|
8
|
+
- **workspace-tools:** Added the `rebuild` task targets to Nx plugins ([07552000](https://github.com/storm-software/storm-ops/commit/07552000))
|
|
9
|
+
|
|
10
|
+
## 1.110.0 (2024-06-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### π Features
|
|
14
|
+
|
|
15
|
+
- **eslint-plugin:** Polyfill `require` in esm build output ([67f1fbab](https://github.com/storm-software/storm-ops/commit/67f1fbab))
|
|
16
|
+
|
|
1
17
|
## 1.109.0 (2024-06-26)
|
|
2
18
|
|
|
3
19
|
|
package/README.md
CHANGED
|
@@ -21,11 +21,15 @@ 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://docusaurus.io/) 
|
|
25
|
+
|
|
26
|
+
> [!IMPORTANT] This repository, and the apps, libraries, and tools contained in
|
|
27
|
+
> it, are still in their initial development phase. As a result, bugs and issues
|
|
28
|
+
> are expected with their usage. When the main development phase completes, a
|
|
29
|
+
> proper release will be performed, and the packages will be available through
|
|
30
|
+
> NPM (and other distributions). This message will be removed at that time.
|
|
31
|
+
> However, in the meantime, please feel free to report any issues you may come
|
|
32
|
+
> across.
|
|
29
33
|
|
|
30
34
|
<br />
|
|
31
35
|
|
package/config/nx.json
CHANGED
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
"dependsOn": ["^format-toml"],
|
|
329
329
|
"executor": "nx:run-commands",
|
|
330
330
|
"options": {
|
|
331
|
-
"command": "pnpm exec taplo format --colors=\"always\" --config=\"
|
|
331
|
+
"command": "pnpm exec taplo format --colors=\"always\" --config=\"./node_modules/@storm-software/linting-tools/taplo/.taplo.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\"",
|
|
332
332
|
"color": true
|
|
333
333
|
}
|
|
334
334
|
},
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"outputs": ["{workspaceRoot}/{projectRoot}"],
|
|
362
362
|
"executor": "nx:run-commands",
|
|
363
363
|
"options": {
|
|
364
|
-
"command": "echo
|
|
364
|
+
"command": "echo Formatting the project files in \"{projectRoot}\" ",
|
|
365
365
|
"color": true
|
|
366
366
|
}
|
|
367
367
|
},
|
|
@@ -376,7 +376,17 @@
|
|
|
376
376
|
},
|
|
377
377
|
"build": {
|
|
378
378
|
"cache": true,
|
|
379
|
-
"dependsOn": ["build-base", "format", "
|
|
379
|
+
"dependsOn": ["build-base", "format", "^build"]
|
|
380
|
+
},
|
|
381
|
+
"rebuild": {
|
|
382
|
+
"cache": false,
|
|
383
|
+
"executor": "nx:run-commands",
|
|
384
|
+
"dependsOn": ["clean", "^build"],
|
|
385
|
+
"options": {
|
|
386
|
+
"command": "pnpm exec nx run {projectName}:build",
|
|
387
|
+
"color": true,
|
|
388
|
+
"cwd": "{workspaceRoot}"
|
|
389
|
+
}
|
|
380
390
|
},
|
|
381
391
|
"docs": {
|
|
382
392
|
"cache": true,
|
package/index.js
CHANGED
|
@@ -67592,7 +67592,6 @@ var init_get_config_file = __esm({
|
|
|
67592
67592
|
logLevel: "all"
|
|
67593
67593
|
}
|
|
67594
67594
|
);
|
|
67595
|
-
writeTrace(config, { logLevel: "all" });
|
|
67596
67595
|
}
|
|
67597
67596
|
if (additionalFileNames && additionalFileNames.length > 0) {
|
|
67598
67597
|
const results = await Promise.all(
|
|
@@ -67608,7 +67607,6 @@ var init_get_config_file = __esm({
|
|
|
67608
67607
|
logLevel: "all"
|
|
67609
67608
|
}
|
|
67610
67609
|
);
|
|
67611
|
-
writeTrace(result.config, { logLevel: "all" });
|
|
67612
67610
|
config = (0, import_deepmerge.default)(result.config ?? {}, config ?? {});
|
|
67613
67611
|
}
|
|
67614
67612
|
}
|
|
@@ -68097,7 +68095,7 @@ var init_create_storm_config = __esm({
|
|
|
68097
68095
|
_workspaceRoot
|
|
68098
68096
|
);
|
|
68099
68097
|
setConfigEnv(config);
|
|
68100
|
-
writeInfo(
|
|
68098
|
+
writeInfo(`\u2699\uFE0F Using Storm configuration:
|
|
68101
68099
|
${formatLogMessage(config)}`, {
|
|
68102
68100
|
logLevel: "all"
|
|
68103
68101
|
});
|
|
@@ -400302,13 +400300,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
400302
400300
|
config
|
|
400303
400301
|
);
|
|
400304
400302
|
config = await loadStormConfig2(workspaceRoot3);
|
|
400305
|
-
writeTrace2(
|
|
400306
|
-
`Loaded Storm config into env:
|
|
400307
|
-
${Object.keys(process.env).filter((key) => key.startsWith("STORM_")).map(
|
|
400308
|
-
(key) => ` - ${key}=${_isFunction2(process.env[key]) ? "<function>" : JSON.stringify(process.env[key])}`
|
|
400309
|
-
).join("\n")}`,
|
|
400310
|
-
config
|
|
400311
|
-
);
|
|
400312
400303
|
}
|
|
400313
400304
|
if (executorOptions?.hooks?.applyDefaultOptions) {
|
|
400314
400305
|
writeDebug2("Running the applyDefaultOptions hook...", config);
|
|
@@ -400425,11 +400416,6 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
400425
400416
|
config
|
|
400426
400417
|
);
|
|
400427
400418
|
config = await loadStormConfig2(workspaceRoot3);
|
|
400428
|
-
writeTrace2(
|
|
400429
|
-
`Loaded Storm config into env:
|
|
400430
|
-
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`,
|
|
400431
|
-
config
|
|
400432
|
-
);
|
|
400433
400419
|
}
|
|
400434
400420
|
if (generatorOptions?.hooks?.applyDefaultOptions) {
|
|
400435
400421
|
writeDebug2("Running the applyDefaultOptions hook...", config);
|