envilder 0.7.8 → 0.7.10
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/README.md +1 -1
- package/package.json +24 -18
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.
|
|
120
|
+
uses: macalbert/envilder/github-action@v0.7.10
|
|
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.
|
|
3
|
+
"version": "0.7.10",
|
|
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í",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"lint:fix": "biome lint --fix",
|
|
30
30
|
"test": "vitest run --reporter=verbose --coverage",
|
|
31
31
|
"test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
|
|
32
|
-
"publish": "npm pack --dry-run && npm publish --provenance",
|
|
32
|
+
"release:publish": "npm pack --dry-run && npm publish --provenance",
|
|
33
33
|
"action-publish": "pnpm build:gha && pnpm verify:gha",
|
|
34
34
|
"release-patch": "pnpm version patch",
|
|
35
35
|
"release-minor": "pnpm version minor",
|
|
@@ -73,31 +73,37 @@
|
|
|
73
73
|
],
|
|
74
74
|
"type": "module",
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@aws-sdk/client-ssm": "^3.
|
|
77
|
-
"@aws-sdk/credential-providers": "^3.
|
|
78
|
-
"@types/node": "^25.
|
|
79
|
-
"commander": "^14.0.
|
|
80
|
-
"dotenv": "^17.
|
|
81
|
-
"inversify": "^7.
|
|
76
|
+
"@aws-sdk/client-ssm": "^3.1000.0",
|
|
77
|
+
"@aws-sdk/credential-providers": "^3.1000.0",
|
|
78
|
+
"@types/node": "^25.3.3",
|
|
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.
|
|
87
|
-
"@commitlint/cli": "^20.
|
|
88
|
-
"@commitlint/config-conventional": "^20.
|
|
89
|
-
"@secretlint/secretlint-rule-preset-recommend": "^11.
|
|
90
|
-
"@testcontainers/localstack": "^11.
|
|
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.
|
|
93
|
-
"glob": "^13.0.
|
|
94
|
-
"secretlint": "^11.
|
|
95
|
-
"testcontainers": "^11.
|
|
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.
|
|
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
|
}
|