@crossdelta/infrastructure 0.2.16 → 0.2.18

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.cjs CHANGED
@@ -311749,10 +311749,10 @@ function buildDropletServices(options) {
311749
311749
  region,
311750
311750
  name: volumeConfig.name,
311751
311751
  size: volumeConfig.sizeGb,
311752
- filesystemType: "ext4",
311752
+ initialFilesystemType: "ext4",
311753
311753
  description: volumeConfig.description || `Persistent storage for ${volumeConfig.name}`
311754
311754
  }, {
311755
- ignoreChanges: ["description"],
311755
+ ignoreChanges: ["description", "initialFilesystemType"],
311756
311756
  retainOnDelete: true
311757
311757
  });
311758
311758
  }
package/dist/index.js CHANGED
@@ -311686,10 +311686,10 @@ function buildDropletServices(options) {
311686
311686
  region,
311687
311687
  name: volumeConfig.name,
311688
311688
  size: volumeConfig.sizeGb,
311689
- filesystemType: "ext4",
311689
+ initialFilesystemType: "ext4",
311690
311690
  description: volumeConfig.description || `Persistent storage for ${volumeConfig.name}`
311691
311691
  }, {
311692
- ignoreChanges: ["description"],
311692
+ ignoreChanges: ["description", "initialFilesystemType"],
311693
311693
  retainOnDelete: true
311694
311694
  });
311695
311695
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/infrastructure",
3
- "version": "0.2.16",
3
+ "version": "0.2.18",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {