@storm-software/workspace-tools 1.131.0 → 1.132.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 +7 -0
- package/README.md +3 -1
- package/config/nx.json +1 -1
- package/index.js +146 -119
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/config/src/define-config.d.ts +18 -0
- package/packages/config/src/schema.d.ts +254 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
- package/src/base/index.js +136 -109
- package/src/executors/clean-package/executor.js +36 -8
- package/src/executors/rolldown/executor.js +36 -8
- package/src/executors/size-limit/executor.js +36 -8
- package/src/executors/tsup/executor.js +36 -8
- package/src/executors/tsup-browser/executor.js +36 -8
- package/src/executors/tsup-neutral/executor.js +36 -8
- package/src/executors/tsup-node/executor.js +36 -8
- package/src/executors/typia/executor.js +36 -8
- package/src/executors/unbuild/executor.js +36 -8
- package/src/generators/browser-library/generator.js +136 -109
- package/src/generators/config-schema/generator.js +36 -8
- package/src/generators/neutral-library/generator.js +136 -109
- package/src/generators/node-library/generator.js +136 -109
- package/src/generators/preset/generator.js +38 -10
- package/src/generators/release-version/generator.js +44 -16
- package/src/utils/index.js +36 -8
package/CHANGELOG.md
CHANGED
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 -->
|
|
@@ -419,9 +419,11 @@ The following executor options are available:
|
|
|
419
419
|
| outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
|
|
420
420
|
| **tsConfig \*** | `string` | The path to the \`tsconfig.json\` file. | "{projectRoot}/tsconfig.json" |
|
|
421
421
|
| additionalEntryPoints | `string[]` | List of additional entry points. | `[]` |
|
|
422
|
+
| tsLibs | `string[]` | The \`lib\` TypeScript Compiler Options parameter. | `[]` |
|
|
422
423
|
| watch | `boolean` | Enable re-building when files change. | |
|
|
423
424
|
| assets | `array` | List of static assets. | `[]` |
|
|
424
425
|
| clean | `boolean` | Remove previous output before build. | `true` |
|
|
426
|
+
| generatePackageJson | `boolean` | Should the package.json file be generated or copied directly into the output folder (if false the file will be copied directly). | `true` |
|
|
425
427
|
| includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | |
|
|
426
428
|
| debug | `boolean` | Should output be unminified with source mappings. | |
|
|
427
429
|
| minify | `boolean` | Should the build process minify the output files? | |
|
package/config/nx.json
CHANGED
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"dependsOn": ["^format-readme"],
|
|
366
366
|
"executor": "nx:run-commands",
|
|
367
367
|
"options": {
|
|
368
|
-
"command": "pnpm exec storm-git readme-gen --templates=\"./
|
|
368
|
+
"command": "pnpm exec storm-git readme-gen --templates=\"./tools/readme-templates\" --project=\"{projectName}\"",
|
|
369
369
|
"color": true
|
|
370
370
|
}
|
|
371
371
|
},
|