@crossdelta/infrastructure 0.2.15 → 0.2.17

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,7 +311749,7 @@ 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
311755
  ignoreChanges: ["description"],
package/dist/index.js CHANGED
@@ -311686,7 +311686,7 @@ 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
311692
  ignoreChanges: ["description"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/infrastructure",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -39,6 +39,7 @@
39
39
  },
40
40
  "scripts": {
41
41
  "build": "bun build --target=node --format=esm --outfile dist/index.js lib/index.ts && bun build --target=node --format=cjs --outfile dist/index.cjs lib/index.ts && bun build --target=node --format=esm --outfile dist/env.js lib/env.ts && bun build --target=node --format=cjs --outfile dist/env.cjs lib/env.ts && tsc -p tsconfig.build.json",
42
+ "prepublishOnly": "bun run build",
42
43
  "generate-env": "bun run cli/commands/generate-env.ts",
43
44
  "lint": "biome lint --fix"
44
45
  }