@gershy/lilac 0.0.2 → 0.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/cmp/cjs/main.d.ts CHANGED
@@ -63,10 +63,7 @@ export declare class Garden<Reg extends Registry<any>> {
63
63
  define: Garden<Reg>['define'];
64
64
  });
65
65
  private getPetals;
66
- prepare(): Promise<{
67
- bootFact: Fact;
68
- mainFact: Fact;
69
- }>;
66
+ prepare(): Promise<Obj<Fact>>;
70
67
  private terraformInit;
71
68
  private terraformPlan;
72
69
  private terraformApply;
package/cmp/mjs/main.d.ts CHANGED
@@ -63,10 +63,7 @@ export declare class Garden<Reg extends Registry<any>> {
63
63
  define: Garden<Reg>['define'];
64
64
  });
65
65
  private getPetals;
66
- prepare(): Promise<{
67
- bootFact: Fact;
68
- mainFact: Fact;
69
- }>;
66
+ prepare(): Promise<Obj<Fact>>;
70
67
  private terraformInit;
71
68
  private terraformPlan;
72
69
  private terraformApply;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gershy/lilac",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Luscious infrastructure Living as Code - an opinionated approach to IAC",
5
5
  "keywords": [
6
6
  "lilac",
@@ -49,7 +49,7 @@
49
49
  "npm.pub": "npm run test && npm run build && npm publish --access public"
50
50
  },
51
51
  "dependencies": {
52
- "@gershy/disk": "^0.0.8",
53
- "@gershy/util-nodejs-proc": "^0.0.1"
52
+ "@gershy/disk": "^0.0.9",
53
+ "@gershy/util-nodejs-proc": "^0.0.2"
54
54
  }
55
55
  }