envilder 0.7.8 → 0.7.9

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/README.md +1 -1
  2. package/package.json +23 -17
package/README.md CHANGED
@@ -117,7 +117,7 @@ Use Envilder directly in your CI/CD workflows with our official GitHub Action:
117
117
  aws-region: us-east-1
118
118
 
119
119
  - name: Pull secrets from AWS SSM
120
- uses: macalbert/envilder/github-action@v0.7.6
120
+ uses: macalbert/envilder/github-action@v0.7.9
121
121
  with:
122
122
  map-file: param-map.json
123
123
  env-file: .env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth",
5
5
  "author": {
6
6
  "name": "Marçal Albert Castellví",
@@ -73,31 +73,37 @@
73
73
  ],
74
74
  "type": "module",
75
75
  "dependencies": {
76
- "@aws-sdk/client-ssm": "^3.983.0",
77
- "@aws-sdk/credential-providers": "^3.983.0",
78
- "@types/node": "^25.0.3",
79
- "commander": "^14.0.2",
80
- "dotenv": "^17.2.3",
81
- "inversify": "^7.10.8",
76
+ "@aws-sdk/client-ssm": "^3.995.0",
77
+ "@aws-sdk/credential-providers": "^3.995.0",
78
+ "@types/node": "^25.3.0",
79
+ "commander": "^14.0.3",
80
+ "dotenv": "^17.3.1",
81
+ "inversify": "^7.11.0",
82
82
  "picocolors": "^1.1.1",
83
83
  "reflect-metadata": "^0.2.2"
84
84
  },
85
85
  "devDependencies": {
86
- "@biomejs/biome": "^2.3.10",
87
- "@commitlint/cli": "^20.3.0",
88
- "@commitlint/config-conventional": "^20.3.0",
89
- "@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
90
- "@testcontainers/localstack": "^11.11.0",
86
+ "@biomejs/biome": "^2.4.4",
87
+ "@commitlint/cli": "^20.4.2",
88
+ "@commitlint/config-conventional": "^20.4.2",
89
+ "@secretlint/secretlint-rule-preset-recommend": "^11.3.1",
90
+ "@testcontainers/localstack": "^11.12.0",
91
91
  "@vercel/ncc": "^0.38.4",
92
- "@vitest/coverage-v8": "^4.0.16",
93
- "glob": "^13.0.0",
94
- "secretlint": "^11.2.5",
95
- "testcontainers": "^11.11.0",
92
+ "@vitest/coverage-v8": "^4.0.18",
93
+ "glob": "^13.0.6",
94
+ "secretlint": "^11.3.1",
95
+ "testcontainers": "^11.12.0",
96
96
  "ts-node": "^10.9.2",
97
97
  "typescript": "^5.9.3",
98
- "vitest": "^4.0.16"
98
+ "vitest": "^4.0.18"
99
99
  },
100
100
  "engines": {
101
101
  "node": ">=20.0.0"
102
+ },
103
+ "pnpm": {
104
+ "overrides": {
105
+ "ajv": "^8.18.0",
106
+ "minimatch": "^10.2.2"
107
+ }
102
108
  }
103
109
  }