zarro 1.160.0 → 1.161.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.160.0",
3
+ "version": "1.161.0",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "./index.js"
package/types.d.ts CHANGED
@@ -705,7 +705,7 @@ declare global {
705
705
  type StatFunction = (path: string) => Promise<fs.Stats | null>
706
706
 
707
707
  interface GitSha {
708
- fetchGitSha(): Promise<string>;
708
+ fetchGitSha(forRepo?: string): Promise<string>;
709
709
 
710
710
  init(): Promise<void>;
711
711