@griddo/cx 11.9.12 → 11.9.14-rc.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.
@@ -19,4 +19,8 @@ declare function runGatsbyBuildCommand(assetPrefixWithDomain: string): void;
19
19
  * with files of type: js, json and css.
20
20
  */
21
21
  declare function createDistFromGatsbyPublic(domain: string, needsAssetPrefix: boolean): Promise<void>;
22
- export { createDistFromGatsbyPublic, getGatsbyAssetPrefixWithDomain, runGatsbyBuildCommand, };
22
+ declare function hasNewCommit(basePath: string): boolean;
23
+ declare function updateCommitFile(options: {
24
+ basePath: string;
25
+ }): void;
26
+ export { createDistFromGatsbyPublic, getGatsbyAssetPrefixWithDomain, hasNewCommit, runGatsbyBuildCommand, updateCommitFile, };