@crossdelta/infrastructure 0.8.5 → 0.8.6

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.
@@ -21,6 +21,7 @@ export const resolveArrayJoin = (variableName: string, separator: string, fileCo
21
21
  return elements.length > 0 ? elements.join(separator) : undefined
22
22
  }
23
23
 
24
+ // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: regex-based env parsing
24
25
  export const extractEnvLiterals = (content: string): Record<string, string> | undefined => {
25
26
  const envBlockMatch = content.match(/(?<!\w)env:\s*\{([^}]*(?:\{[^}]*\}[^}]*)*)\}/)
26
27
  if (!envBlockMatch?.[1]) return undefined
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/infrastructure",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -35,7 +35,7 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@crossdelta/cloudevents": "^0.7.19"
38
+ "@crossdelta/cloudevents": "^0.7.20"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@pulumi/digitalocean": "^4.0.0",