@stacksjs/build 0.70.112 → 0.70.113
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/dist/index.d.ts +6 -5
- package/dist/index.js +108 -108
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
2
|
+
* Parse every generated declaration before a package can report a successful
|
|
3
|
+
* build. The invalid emission shapes this used to repair (`method<T>: (…) => …`
|
|
4
|
+
* and `interface Nameextends Base`) were fixed at the source in dtsx; what
|
|
5
|
+
* remains here is a pure publish-time safety net that fails the build if any
|
|
6
|
+
* `.d.ts` does not parse.
|
|
6
7
|
*/
|
|
7
|
-
export declare function
|
|
8
|
+
export declare function validateDeclarations(dir: string): Promise<void>;
|
|
8
9
|
export declare function outro(options: {
|
|
9
10
|
dir: string
|
|
10
11
|
startTime: number
|