hologit 0.50.1 → 0.50.2

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/index.d.ts +1 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -136,6 +136,7 @@ declare module 'hologit' {
136
136
  getChildren(): Promise<{ [key: string]: TreeObject | BlobObject | CommitObject }>;
137
137
  getBlobMap(): Promise<{ [key: string]: BlobObject }>;
138
138
  deleteChild(childPath: string): Promise<void>;
139
+ clearChildren(): void;
139
140
  getSubtree(subtreePath: string, create?: boolean): Promise<TreeObject | null>;
140
141
  getSubtreeStack(subtreePath: string, create?: boolean): Promise<TreeObject[] | null>;
141
142
  write(): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hologit",
3
- "version": "0.50.1",
3
+ "version": "0.50.2",
4
4
  "description": "Hologit automates the projection of layered composite file trees based on flat, declarative plans",
5
5
  "repository": "https://github.com/JarvusInnovations/hologit",
6
6
  "main": "lib/index.js",