@storm-software/workspace-tools 1.76.2 → 1.76.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 +22 -0
- package/declarations.d.ts +38 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 1.76.3 (2024-05-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **deps:** update patch prod dependencies ([a8113435](https://github.com/storm-software/storm-ops/commit/a8113435))
|
|
7
|
+
|
|
8
|
+
- **deps:** update dependencies-non-major ([#145](https://github.com/storm-software/storm-ops/pull/145))
|
|
9
|
+
|
|
10
|
+
- **deps:** update dependency typia to v6 ([#151](https://github.com/storm-software/storm-ops/pull/151))
|
|
11
|
+
|
|
12
|
+
- **deps:** update patch prod dependencies ([20ed7f14](https://github.com/storm-software/storm-ops/commit/20ed7f14))
|
|
13
|
+
|
|
14
|
+
- **deps:** update patch prod dependencies ([bef67d5d](https://github.com/storm-software/storm-ops/commit/bef67d5d))
|
|
15
|
+
|
|
16
|
+
- **deps:** update dependencies-non-major ([#159](https://github.com/storm-software/storm-ops/pull/159))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### ❤️ Thank You
|
|
20
|
+
|
|
21
|
+
- Patrick Sullivan
|
|
22
|
+
|
|
1
23
|
## 1.76.2 (2024-05-07)
|
|
2
24
|
|
|
3
25
|
|
package/declarations.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ import type {
|
|
|
10
10
|
SourceFile,
|
|
11
11
|
ParsedCommandLine
|
|
12
12
|
} from "typescript";
|
|
13
|
+
import type { NormalizedSchema } from "@nx/js/src/generators/library/library";
|
|
14
|
+
import type { LibraryGeneratorSchema } from "@nx/js/src/utils/schema";
|
|
13
15
|
|
|
14
16
|
export interface TsupContext {
|
|
15
17
|
projectRoot: string;
|
|
@@ -152,3 +154,39 @@ declare function withRunGenerator<TGeneratorSchema = any>(
|
|
|
152
154
|
_options: TGeneratorSchema
|
|
153
155
|
) => Promise<GeneratorCallback | BaseGeneratorResult>;
|
|
154
156
|
export { withRunGenerator };
|
|
157
|
+
|
|
158
|
+
export type TypeScriptLibraryGeneratorSchema = Omit<
|
|
159
|
+
LibraryGeneratorSchema,
|
|
160
|
+
| "js"
|
|
161
|
+
| "pascalCaseFiles"
|
|
162
|
+
| "skipFormat"
|
|
163
|
+
| "skipTsConfig"
|
|
164
|
+
| "skipPackageJson"
|
|
165
|
+
| "includeBabelRc"
|
|
166
|
+
| "unitTestRunner"
|
|
167
|
+
| "linter"
|
|
168
|
+
| "testEnvironment"
|
|
169
|
+
| "config"
|
|
170
|
+
| "compiler"
|
|
171
|
+
| "bundler"
|
|
172
|
+
| "skipTypeCheck"
|
|
173
|
+
| "minimal"
|
|
174
|
+
> & {
|
|
175
|
+
name: string;
|
|
176
|
+
description: string;
|
|
177
|
+
buildExecutor: string;
|
|
178
|
+
platform?: Platform;
|
|
179
|
+
devDependencies?: Record<string, string>;
|
|
180
|
+
peerDependencies?: Record<string, string>;
|
|
181
|
+
peerDependenciesMeta?: Record<string, any>;
|
|
182
|
+
tsConfigOptions?: Record<string, any>;
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
export type TypeScriptLibraryGeneratorNormalizedSchema =
|
|
186
|
+
TypeScriptLibraryGeneratorSchema & NormalizedSchema;
|
|
187
|
+
|
|
188
|
+
declare function typeScriptLibraryGeneratorFn(
|
|
189
|
+
tree: Tree,
|
|
190
|
+
schema: TypeScriptLibraryGeneratorSchema
|
|
191
|
+
): Promise<any>;
|
|
192
|
+
export { typeScriptLibraryGeneratorFn };
|
package/package.json
CHANGED