envilder 0.7.7 → 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.
- package/README.md +1 -1
- package/lib/apps/cli/Index.js +0 -0
- package/package.json +43 -36
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.9
|
|
121
121
|
with:
|
|
122
122
|
map-file: param-map.json
|
|
123
123
|
env-file: .env
|
package/lib/apps/cli/Index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envilder",
|
|
3
|
-
"version": "0.7.
|
|
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í",
|
|
@@ -16,6 +16,26 @@
|
|
|
16
16
|
"bin": {
|
|
17
17
|
"envilder": "lib/apps/cli/Index.js"
|
|
18
18
|
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"clean": "pnpm store prune && pnpm dlx rimraf lib && pnpm dlx rimraf coverage && pnpm dlx rimraf node_modules",
|
|
21
|
+
"build": "tsc",
|
|
22
|
+
"build:gha": "ncc build src/apps/gha/Index.ts -o github-action/dist --minify",
|
|
23
|
+
"verify:gha": "pnpm build:gha && git diff --exit-code github-action/dist/index.js || (echo '❌ github-action/dist/index.js is not up to date. Run pnpm build:gha' && exit 1)",
|
|
24
|
+
"local:install": "pnpm build && node --loader ts-node/esm scripts/pack-and-install.ts",
|
|
25
|
+
"local:test-run": "pnpm build && node lib/apps/cli/Index.js --map=tests/sample/param-map.json --envfile=tests/sample/autogenerated.env",
|
|
26
|
+
"format": "biome format",
|
|
27
|
+
"format:write": "biome format --write",
|
|
28
|
+
"lint": "secretlint \"**/*\" && biome check --write && tsc --noEmit",
|
|
29
|
+
"lint:fix": "biome lint --fix",
|
|
30
|
+
"test": "vitest run --reporter=verbose --coverage",
|
|
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",
|
|
33
|
+
"action-publish": "pnpm build:gha && pnpm verify:gha",
|
|
34
|
+
"release-patch": "pnpm version patch",
|
|
35
|
+
"release-minor": "pnpm version minor",
|
|
36
|
+
"release-major": "pnpm version major",
|
|
37
|
+
"release-prerelease": "pnpm version prerelease"
|
|
38
|
+
},
|
|
19
39
|
"keywords": [
|
|
20
40
|
"env",
|
|
21
41
|
"dotenv",
|
|
@@ -53,50 +73,37 @@
|
|
|
53
73
|
],
|
|
54
74
|
"type": "module",
|
|
55
75
|
"dependencies": {
|
|
56
|
-
"@aws-sdk/client-ssm": "^3.
|
|
57
|
-
"@aws-sdk/credential-providers": "^3.
|
|
58
|
-
"@types/node": "^25.0
|
|
59
|
-
"commander": "^14.0.
|
|
60
|
-
"dotenv": "^17.
|
|
61
|
-
"inversify": "^7.
|
|
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",
|
|
62
82
|
"picocolors": "^1.1.1",
|
|
63
83
|
"reflect-metadata": "^0.2.2"
|
|
64
84
|
},
|
|
65
85
|
"devDependencies": {
|
|
66
|
-
"@biomejs/biome": "^2.
|
|
67
|
-
"@commitlint/cli": "^20.
|
|
68
|
-
"@commitlint/config-conventional": "^20.
|
|
69
|
-
"@secretlint/secretlint-rule-preset-recommend": "^11.
|
|
70
|
-
"@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",
|
|
71
91
|
"@vercel/ncc": "^0.38.4",
|
|
72
|
-
"@vitest/coverage-v8": "^4.0.
|
|
73
|
-
"glob": "^13.0.
|
|
74
|
-
"secretlint": "^11.
|
|
75
|
-
"testcontainers": "^11.
|
|
92
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
93
|
+
"glob": "^13.0.6",
|
|
94
|
+
"secretlint": "^11.3.1",
|
|
95
|
+
"testcontainers": "^11.12.0",
|
|
76
96
|
"ts-node": "^10.9.2",
|
|
77
97
|
"typescript": "^5.9.3",
|
|
78
|
-
"vitest": "^4.0.
|
|
98
|
+
"vitest": "^4.0.18"
|
|
79
99
|
},
|
|
80
100
|
"engines": {
|
|
81
101
|
"node": ">=20.0.0"
|
|
82
102
|
},
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"local:install": "pnpm build && node --loader ts-node/esm scripts/pack-and-install.ts",
|
|
89
|
-
"local:test-run": "pnpm build && node lib/apps/cli/Index.js --map=tests/sample/param-map.json --envfile=tests/sample/autogenerated.env",
|
|
90
|
-
"format": "biome format",
|
|
91
|
-
"format:write": "biome format --write",
|
|
92
|
-
"lint": "secretlint \"**/*\" && biome check --write && tsc --noEmit",
|
|
93
|
-
"lint:fix": "biome lint --fix",
|
|
94
|
-
"test": "vitest run --reporter=verbose --coverage",
|
|
95
|
-
"test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
|
|
96
|
-
"action-publish": "pnpm build:gha && pnpm verify:gha",
|
|
97
|
-
"release-patch": "pnpm version patch",
|
|
98
|
-
"release-minor": "pnpm version minor",
|
|
99
|
-
"release-major": "pnpm version major",
|
|
100
|
-
"release-prerelease": "pnpm version prerelease"
|
|
103
|
+
"pnpm": {
|
|
104
|
+
"overrides": {
|
|
105
|
+
"ajv": "^8.18.0",
|
|
106
|
+
"minimatch": "^10.2.2"
|
|
107
|
+
}
|
|
101
108
|
}
|
|
102
|
-
}
|
|
109
|
+
}
|