@storm-software/workspace-tools 1.16.3 → 1.16.5

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.16.4](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.3...workspace-tools-v1.16.4) (2023-11-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **git-tools:** Added code to ensure the readme-gen sections are added back after running ([19232ef](https://github.com/storm-software/storm-ops/commit/19232ef62d9d10bb4619debeb968f83e970e38c8))
7
+
8
+ ## [1.16.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.2...workspace-tools-v1.16.3) (2023-11-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resolved issue with entry path passed into api-extractor ([b2614e5](https://github.com/storm-software/storm-ops/commit/b2614e5639be0717e747c6bf06b39dc31df393e2))
14
+
1
15
  ## [1.16.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.1...workspace-tools-v1.16.2) (2023-11-29)
2
16
 
3
17
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.16.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.16.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
21
21
 
22
22
  <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
@@ -31,61 +31,79 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
31
31
 
32
32
  A package containing tools for managing a Storm workspace. It includes various [Nx](https://nx.dev) generators and executors for common development tasks.
33
33
 
34
- <!-- START doctoc -->
35
- <!-- END doctoc -->
34
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
35
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
36
+
37
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
36
38
 
37
39
  This library was generated with [Nx](https://nx.dev).
38
40
 
39
- ## Executors
41
+ <!-- START executors -->
42
+ <!-- prettier-ignore-start -->
43
+ <!-- markdownlint-disable -->
40
44
 
41
- The following executors are available in this package to invoke common tasks for the workspace's projects:
42
45
 
43
- ## Tsup Build executor
46
+ ## Tsup Builder
44
47
 
45
- Run a build on the project using tsup configuration
48
+ Run a build on the project using ESBuild with a patched tsup configuration
46
49
 
47
- ### Example
50
+ ### Example
48
51
 
49
- This executor can be used by executing the following in a command line utility:
52
+ This executor can be used by executing the following in a command line utility:
50
53
 
51
- ```cmd
54
+ ```cmd
52
55
  nx run my-project:tsup
53
56
  ```
54
57
 
55
- **Please note:** _The tsup executor should be included in the desired projects's `project.json` file._
58
+ **Please note:** _The tsup executor should be included in the desired projects's `project.json` file.All required options must be included in the `options` property of the json._
56
59
 
57
60
  ### Options
58
61
 
59
62
  The following executor options are available:
60
63
 
61
- | Option | Type | Description | Default || --------- | ------ | ------------- | --------- || entry | `string` | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
62
- ,| outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
63
- ,| tsConfig | `string` | The path to tsconfig file. | "tsconfig.json" |
64
- ,| additionalEntryPoints | `string[]` | List of additional entry points. | `` |
65
- ,| external | `string[]` | Mark one or more module as external. Can use * wildcards, such as '*.png'. | |
66
- ,| bundle | `boolean` | Whether to bundle the main entry point and additional entry points. Set to false to keep individual output files. | `true` |
67
- ,| watch | `boolean` | Enable re-building when files change. | |
68
- ,| assets | `array` | List of static assets. |`` |
69
- ,| clean | `boolean` | Remove previous output before build. | `true` |
70
- ,| includeSrc | `boolean` | Should the source files be added to the distribution folder in an `src` directory. | `true` |
71
- ,| debug | `boolean` | Should output be unminified with source mappings. | |
72
- ,| platform | "browser" \| "neutral" \| "node" \| "worker" | Platform target for outputs. | "neutral" |
73
- ,| banner | `string` | A short heading added to the top of each typescript file added in the output folder's src directory. | "This code was developed by Storm Software (https://stormsoftware.org) and is licensed under the Apache License 2.0." |
74
- ,| verbose | `boolean` | Should write extra log outputs with details from the executor. | |
75
- ,| define | `object` | Define global constants that can be used in the source code. The value will be converted into a stringified JSON. | |
76
- ,| env | `object` | Define environment variables that can be used in the source code. The value will be converted into a stringified JSON. | |
77
- ,| apiReport | `boolean` | Should API Extractor generate an API Report file. | `true` |
78
- ,| docModel | `boolean` | Should API Extractor generate an Doc Model markdown file. | `true` |
79
- ,| tsdocMetadata | `boolean` | Should API Extractor generate an TSDoc Metadata file. | `true` |
80
- ,| options | `object` | Additional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e. | |
81
- ,| plugins | `object[]` | List of ESBuild plugins to use during processing | `` |
82
- ,| required |`string` | | |
83
- ,| definitions |`string` | | |
64
+ | Option | Type | Description | Default |
65
+ | --------- | ------ | ------------- | --------- |
66
+ | entry | `string` | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
67
+ | outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
68
+ | *tsConfig \** | `string` | The path to tsconfig file. | "tsconfig.json" |
69
+ | additionalEntryPoints | `string[]` | List of additional entry points. | `` |
70
+ | external | `string[]` | Mark one or more module as external. Can use \* wildcards, such as '\*.png'. | |
71
+ | bundle | `boolean` | Whether to bundle the main entry point and additional entry points. Set to false to keep individual output files. | `true` |
72
+ | watch | `boolean` | Enable re-building when files change. | |
73
+ | assets | `array` | List of static assets. | `` |
74
+ | clean | `boolean` | Remove previous output before build. | `true` |
75
+ | includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | `true` |
76
+ | debug | `boolean` | Should output be unminified with source mappings. | |
77
+ | *platform \** | "browser" \| "neutral" \| "node" \| "worker" | Platform target for outputs. | "neutral" |
78
+ | *banner \** | `string` | A short heading added to the top of each typescript file added in the output folder's src directory. | "This code was developed by Storm Software (<https://stormsoftware.org>) and is licensed under the Apache License 2.0." |
79
+ | verbose | `boolean` | Should write extra log outputs with details from the executor. | |
80
+ | define | `object` | Define global constants that can be used in the source code. The value will be converted into a stringified JSON. | |
81
+ | env | `object` | Define environment variables that can be used in the source code. The value will be converted into a stringified JSON. | |
82
+ | apiReport | `boolean` | Should API Extractor generate an API Report file. | `true` |
83
+ | docModel | `boolean` | Should API Extractor generate an Doc Model markdown file. | `true` |
84
+ | tsdocMetadata | `boolean` | Should API Extractor generate an TSDoc Metadata file. | `true` |
85
+ | options | `object` | Additional options to pass to tsup. See <https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e>. | |
86
+ | plugins | `object[]` | List of ESBuild plugins to use during processing | `` |
87
+
88
+
89
+ **Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
90
+
91
+
92
+
93
+ <!-- markdownlint-restore -->
94
+ <!-- prettier-ignore-end -->
95
+
96
+ <!-- END executors -->
84
97
 
85
98
  ## Generators
86
99
 
87
100
  The following generators are available with this package to assist in workspace management:
88
101
 
102
+ <!-- START generators -->
103
+ <!-- prettier-ignore-start -->
104
+ <!-- markdownlint-disable -->
105
+
106
+
89
107
  ## Init Storm Workspace Plugin
90
108
 
91
109
  Init Storm Workspace Plugin.
@@ -94,31 +112,52 @@ Init Storm Workspace Plugin.
94
112
 
95
113
  The following executor options are available:
96
114
 
97
- | Option | Type | Description | Default || --------- | ------ | ------------- | --------- || skipFormat | `boolean` | Skip formatting files. | |
115
+ | Option | Type | Description | Default |
116
+ | --------- | ------ | ------------- | --------- |
117
+ | skipFormat | `boolean` | Skip formatting files. | |
98
118
 
99
- ## Storm Workspace preset
100
119
 
101
- Storm workspace preset generator
102
120
 
103
- ### Examples
104
121
 
105
- This generator can be used by executing the following examples in a command line utility:
122
+ ## Workspace Preset
106
123
 
107
- #### Generate a storm workspace with the name: example-repo, namespace: storm-software, organization: storm-software, and repositoryUrl: 'https://github.com/storm-software/example-repo'.
124
+ Create a Storm workspace with all of the required files and recommended packages installed.
108
125
 
109
- ```
126
+ ### Examples
127
+
128
+ This generator can be used by executing the following examples in a command line utility:
129
+
130
+ Generate a storm workspace with:
131
+ - name: example-repo
132
+ - namespace: storm-software
133
+ - organization: storm-software
134
+ - repositoryUrl: <https://github.com/storm-software/example-repo>
135
+
136
+ ```cmd
110
137
  nx g @storm-software/workspace-tools:preset --name 'example-repo'
111
138
  ```
112
139
 
113
- #### Generate a storm workspace with the name: example-repo, namespace: example, and repositoryUrl: 'https://github.com/storm-software/example-repo'.
114
140
 
115
- ```
141
+
142
+ Generate a storm workspace with:
143
+ - name: example-repo
144
+ - namespace: example
145
+ - repositoryUrl: <https://github.com/storm-software/example-repo>
146
+
147
+ ```cmd
116
148
  nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example'
117
149
  ```
118
150
 
119
- #### Generate a storm workspace with the name: example-repo, namespace: example, organization: example-org, description: 'An example workspace', and repositoryUrl: 'https://github.com/example-org/example-repo'.
120
151
 
121
- ```
152
+
153
+ Generate a storm workspace with:
154
+ - name: example-repo
155
+ - namespace: example
156
+ - organization: example-org
157
+ - description: An example workspace
158
+ - repositoryUrl: <https://github.com/example-org/example-repo>
159
+
160
+ ```cmd
122
161
  nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example' --organization 'example-org' --description 'An example workspace'
123
162
  ```
124
163
 
@@ -126,19 +165,24 @@ nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'e
126
165
 
127
166
  The following executor options are available:
128
167
 
129
- | Option | Type | Description | Default || --------- | ------ | ------------- | --------- || name\* | `string` | The name of the workspace root. | |
130
- ,| organization\* | `string` | The organization that owns the workspace. | "storm-software" |
131
- ,| namespace | `string` | The npm scope used for the workspace. Defaults to the organization name. | |
132
- ,| includeApps\* | `boolean` | Should a separate `apps` folder be created for this workspace (if Yes: `apps` and `libs` folders will be added, if No: `packages` folders will be added)? | |
133
- ,| description | `string` | The description of the workspace to use in the package.json and README.md files. | |
134
- ,| repositoryUrl | `string` | The URL of the workspace in GitHub. Defaults to the https://github.com/<organization>/<name> | |
135
- ,| nxCloud | `boolean` | Should distributed caching with Nx Cloud be enabled for the workspace? | |
136
- ,| mode\* | "light" \| "dark" | Which client mode should be used for the Nx Task Runner? | "dark" |
137
- ,| packageManager | "npm" \| "yarn" \| "pnpm" | What package manager is used for the workspace? | "pnpm" |
168
+ | Option | Type | Description | Default |
169
+ | --------- | ------ | ------------- | --------- |
170
+ | *name \** | `string` | The name of the workspace root. | |
171
+ | *organization \** | `string` | The organization that owns the workspace. | "storm-software" |
172
+ | namespace | `string` | The npm scope used for the workspace. Defaults to the organization name. | |
173
+ | *includeApps \** | `boolean` | Should a separate \`apps\` folder be created for this workspace (if Yes: \`apps\` and \`libs\` folders will be added, if No: \`packages\` folders will be added)? | |
174
+ | description | `string` | The description of the workspace to use in the package.json and README.md files. | |
175
+ | repositoryUrl | `string` | The URL of the workspace in GitHub. Defaults to <https://github.com/{organization}/{name}> | |
176
+ | nxCloud | `boolean` | Should distributed caching with Nx Cloud be enabled for the workspace? | |
177
+ | *mode \** | "light" \| "dark" | Which client mode should be used for the Nx Task Runner? | "dark" |
178
+ | packageManager | "npm" \| "yarn" \| "pnpm" | What package manager is used for the workspace? | "pnpm" |
179
+
180
+
181
+ **Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
182
+
138
183
 
139
- **Please note:** _Option names followed by _ above are required, and must be provided to run the executor.\*
140
184
 
141
- ## node-library
185
+ ## Add Node Library
142
186
 
143
187
  Generate a new node library project in the Storm workspace
144
188
 
@@ -146,19 +190,29 @@ Generate a new node library project in the Storm workspace
146
190
 
147
191
  The following executor options are available:
148
192
 
149
- | Option | Type | Description | Default || --------- | ------ | ------------- | --------- || name\* | `string` | A name for the library. | |
150
- ,| description | `string` | The library used by Storm Software for building TypeScript applications. | |
151
- ,| directory\* | `string` | A directory where the lib is placed. | |
152
- ,| projectNameAndRootFormat\* | "as-provided" \| "derived" | Whether to generate the project name and root directory as provided (`as-provided`) or generate them composing their values and taking the configured layout into account (`derived`). | |
153
- ,| tags | `string` | Add tags to the library (used for linting). | |
154
- ,| strict | `boolean` | Whether to enable tsconfig strict mode or not. | `true` |
155
- ,| publishable\* | `boolean` | Generate a publishable library. | |
156
- ,| importPath\* | `string` | The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library. | |
157
- ,| buildable\* | `boolean` | Generate a buildable library. | `true` |
158
- ,| setParserOptionsProject | `boolean` | Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons. | |
159
- ,| rootProject | `boolean` | Is the current project the root project in the workspace. | |
160
-
161
- **Please note:** _Option names followed by _ above are required, and must be provided to run the executor.\*
193
+ | Option | Type | Description | Default |
194
+ | --------- | ------ | ------------- | --------- |
195
+ | *name \** | `string` | A name for the library. | |
196
+ | description | `string` | The library used by Storm Software for building TypeScript applications. | |
197
+ | *directory \** | `string` | A directory where the lib is placed. | |
198
+ | *projectNameAndRootFormat \** | "as-provided" \| "derived" | Whether to generate the project name and root directory as provided (\`as-provided\`) or generate them composing their values and taking the configured layout into account (\`derived\`). | |
199
+ | tags | `string` | Add tags to the library (used for linting). | |
200
+ | strict | `boolean` | Whether to enable tsconfig strict mode or not. | `true` |
201
+ | *publishable \** | `boolean` | Generate a publishable library. | |
202
+ | *importPath \** | `string` | The library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library. | |
203
+ | *buildable \** | `boolean` | Generate a buildable library. | `true` |
204
+ | setParserOptionsProject | `boolean` | Whether or not to configure the ESLint \`parserOptions.project\` option. We do not do this by default for lint performance reasons. | |
205
+ | rootProject | `boolean` | Is the current project the root project in the workspace. | |
206
+
207
+
208
+ **Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
209
+
210
+
211
+
212
+ <!-- markdownlint-restore -->
213
+ <!-- prettier-ignore-end -->
214
+
215
+ <!-- END generators -->
162
216
 
163
217
  ## Building
164
218
 
package/index.js CHANGED
@@ -40019,9 +40019,9 @@ var require_brace_expansion2 = __commonJS({
40019
40019
  }
40020
40020
  });
40021
40021
 
40022
- // node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-EPAEWGCP.js
40022
+ // node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-EPAEWGCP.js
40023
40023
  var require_chunk_EPAEWGCP = __commonJS({
40024
- "node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
40024
+ "node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
40025
40025
  "use strict";
40026
40026
  Object.defineProperty(exports, "__esModule", { value: true });
40027
40027
  var version = "8.0.0";
@@ -40481,9 +40481,9 @@ var require_resolve_from = __commonJS({
40481
40481
  }
40482
40482
  });
40483
40483
 
40484
- // node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-GQ77QZBO.js
40484
+ // node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-GQ77QZBO.js
40485
40485
  var require_chunk_GQ77QZBO = __commonJS({
40486
- "node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
40486
+ "node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
40487
40487
  "use strict";
40488
40488
  Object.defineProperty(exports, "__esModule", { value: true });
40489
40489
  function _interopRequireDefault(obj) {
@@ -40761,9 +40761,9 @@ var require_chunk_GQ77QZBO = __commonJS({
40761
40761
  }
40762
40762
  });
40763
40763
 
40764
- // node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-UIX4URMV.js
40764
+ // node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-UIX4URMV.js
40765
40765
  var require_chunk_UIX4URMV = __commonJS({
40766
- "node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
40766
+ "node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
40767
40767
  "use strict";
40768
40768
  Object.defineProperty(exports, "__esModule", { value: true });
40769
40769
  function _interopRequireWildcard(obj) {
@@ -41697,9 +41697,9 @@ var require_dist2 = __commonJS({
41697
41697
  }
41698
41698
  });
41699
41699
 
41700
- // node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-7G76EW2R.js
41700
+ // node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-7G76EW2R.js
41701
41701
  var require_chunk_7G76EW2R = __commonJS({
41702
- "node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
41702
+ "node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
41703
41703
  "use strict";
41704
41704
  Object.defineProperty(exports, "__esModule", { value: true });
41705
41705
  function _interopRequireDefault(obj) {
@@ -95505,9 +95505,9 @@ var require_chokidar = __commonJS({
95505
95505
  }
95506
95506
  });
95507
95507
 
95508
- // node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/index.js
95508
+ // node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/index.js
95509
95509
  var require_dist5 = __commonJS({
95510
- "node_modules/.pnpm/tsup@8.0.0_patch_hash=qacpwkdapepzhvdo4ovtfmkorm_@microsoft+api-extractor@7.38.3_@swc+core@1._oembpat6aoozsu4cx5s52dhrce/node_modules/tsup/dist/index.js"(exports) {
95510
+ "node_modules/.pnpm/tsup@8.0.0_patch_hash=kxprmcgxw47lxad5mj6nzl2j4q_@microsoft+api-extractor@7.38.3_@swc+core@1._j43in2cnhizumbmv4i57wgcjiq/node_modules/tsup/dist/index.js"(exports) {
95511
95511
  "use strict";
95512
95512
  Object.defineProperty(exports, "__esModule", { value: true });
95513
95513
  function _interopRequireDefault(obj) {
@@ -97874,51 +97874,43 @@ var require_dist5 = __commonJS({
97874
97874
  projectFolder = projectFolder.slice(0, -1);
97875
97875
  }
97876
97876
  !options.silent && logger2.info("dts", `\u26A1 Preparing to run API Extractor (DTS generate): ${projectFolder}`);
97877
- const relativeProjectFolder = _path2.default.relative(
97878
- _path2.default.join(options.workspaceRoot, projectFolder.replaceAll("/", "\\")),
97879
- options.workspaceRoot
97880
- );
97881
97877
  const apiReferenceProjectDir = _path2.default.join(
97882
- relativeProjectFolder,
97878
+ options.workspaceRoot,
97883
97879
  "docs",
97884
97880
  "api-reports",
97885
97881
  options.projectRoot
97886
- ).replaceAll("\\", "/");
97882
+ ).replaceAll("/", "\\");
97887
97883
  let configObject = {
97888
97884
  mainEntryPointFilePath: inputFilePath.includes(options.workspaceRoot) ? inputFilePath : _path2.default.join(options.workspaceRoot, inputFilePath),
97889
97885
  apiReport: {
97890
97886
  enabled: options.apiReport !== false,
97891
97887
  reportFileName: "api-report.md",
97892
- reportFolder: `<projectFolder>/${apiReferenceProjectDir}`,
97893
- reportTempFolder: `<projectFolder>/${_path2.default.join(
97894
- relativeProjectFolder,
97888
+ reportFolder: apiReferenceProjectDir,
97889
+ reportTempFolder: _path2.default.join(
97890
+ options.workspaceRoot,
97895
97891
  "tmp",
97896
97892
  "api-reports"
97897
- ).replaceAll("\\", "/")}`
97893
+ ).replaceAll("/", "\\")
97898
97894
  },
97899
97895
  docModel: {
97900
97896
  enabled: options.docModel !== false,
97901
- apiJsonFilePath: `<projectFolder>/${_path2.default.join(
97897
+ apiJsonFilePath: _path2.default.join(
97902
97898
  apiReferenceProjectDir,
97903
- relativeProjectFolder,
97904
97899
  "documents-model.api.json"
97905
- ).replaceAll("\\", "/")}`
97900
+ ).replaceAll("/", "\\")
97906
97901
  },
97907
97902
  dtsRollup: {
97908
97903
  enabled: true,
97909
97904
  untrimmedFilePath: `<projectFolder>/${_path2.default.join(
97910
- relativeProjectFolder,
97911
- options.outDir,
97905
+ options.outDir.replace(projectFolder, ""),
97912
97906
  `index${dtsExtension}`
97913
97907
  ).replaceAll("\\", "/")}`,
97914
97908
  betaTrimmedFilePath: `<projectFolder>/${_path2.default.join(
97915
- relativeProjectFolder,
97916
- options.outDir,
97909
+ options.outDir.replace(projectFolder, ""),
97917
97910
  "index-beta.d.ts"
97918
97911
  ).replaceAll("\\", "/")}`,
97919
97912
  publicTrimmedFilePath: `<projectFolder>/${_path2.default.join(
97920
- relativeProjectFolder,
97921
- options.outDir,
97913
+ options.outDir.replace(projectFolder, ""),
97922
97914
  "index-public.d.ts"
97923
97915
  ).replaceAll("\\", "/")}`
97924
97916
  },