isolate-package 1.29.0-2 → 1.29.0-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/dist/index.d.mts CHANGED
@@ -45,5 +45,11 @@ declare function isolate(config?: IsolateConfig): Promise<string>;
45
45
  */
46
46
  declare function getInternalPackageNames(config?: IsolateConfig): Promise<string[]>;
47
47
  //#endregion
48
- export { type IsolateConfig, type Logger, defineConfig, getInternalPackageNames, isolate };
48
+ //#region src/index.d.ts
49
+ /** Used by firebase-tools-with-isolate to type the dynamic import */
50
+ type IsolateExports = {
51
+ isolate: typeof isolate;
52
+ };
53
+ //#endregion
54
+ export { type IsolateConfig, IsolateExports, type Logger, defineConfig, getInternalPackageNames, isolate };
49
55
  //# sourceMappingURL=index.d.mts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isolate-package",
3
- "version": "1.29.0-2",
3
+ "version": "1.29.0-3",
4
4
  "description": "Isolate monorepo packages to form a self-contained deployable unit",
5
5
  "keywords": [
6
6
  "ci",
package/src/index.ts CHANGED
@@ -1,5 +1,11 @@
1
+ import type { isolate } from "./isolate";
1
2
  export { isolate } from "./isolate";
2
3
  export { getInternalPackageNames } from "./get-internal-package-names";
3
4
  export { defineConfig } from "./lib/config";
4
5
  export type { IsolateConfig } from "./lib/config";
5
6
  export type { Logger } from "./lib/logger";
7
+
8
+ /** Used by firebase-tools-with-isolate to type the dynamic import */
9
+ export type IsolateExports = {
10
+ isolate: typeof isolate;
11
+ };