envilder 0.7.11 → 0.7.12

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 +14 -5
package/README.md CHANGED
@@ -119,7 +119,7 @@ Use Envilder directly in your CI/CD workflows with our official GitHub Action:
119
119
  aws-region: us-east-1
120
120
 
121
121
  - name: Pull secrets from AWS SSM
122
- uses: macalbert/envilder/github-action@v0.7.11
122
+ uses: macalbert/envilder/github-action@v0.7.12
123
123
  with:
124
124
  map-file: param-map.json
125
125
  env-file: .env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
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í",
@@ -17,6 +17,7 @@
17
17
  "envilder": "lib/apps/cli/Index.js"
18
18
  },
19
19
  "scripts": {
20
+ "prepare": "lefthook install",
20
21
  "clean": "pnpm store prune && pnpm dlx rimraf lib && pnpm dlx rimraf coverage && pnpm dlx rimraf node_modules",
21
22
  "build": "tsc",
22
23
  "build:gha": "ncc build src/apps/gha/Index.ts -o github-action/dist --minify",
@@ -28,6 +29,7 @@
28
29
  "lint": "secretlint \"**/*\" && biome check --write && tsc --noEmit",
29
30
  "lint:fix": "biome lint --fix",
30
31
  "test": "vitest run --reporter=verbose --coverage",
32
+ "test:e2e": "vitest run --reporter=verbose e2e/",
31
33
  "test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
32
34
  "release:publish": "npm pack --dry-run && npm publish --provenance",
33
35
  "action-publish": "pnpm build:gha && pnpm verify:gha",
@@ -73,8 +75,8 @@
73
75
  ],
74
76
  "type": "module",
75
77
  "dependencies": {
76
- "@aws-sdk/client-ssm": "^3.1002.0",
77
- "@aws-sdk/credential-providers": "^3.1002.0",
78
+ "@aws-sdk/client-ssm": "^3.1014.0",
79
+ "@aws-sdk/credential-providers": "^3.1014.0",
78
80
  "@types/node": "^25.3.3",
79
81
  "commander": "^14.0.3",
80
82
  "dotenv": "^17.3.1",
@@ -91,6 +93,7 @@
91
93
  "@vercel/ncc": "^0.38.4",
92
94
  "@vitest/coverage-v8": "^4.0.18",
93
95
  "glob": "^13.0.6",
96
+ "lefthook": "^2.1.4",
94
97
  "secretlint": "^11.3.1",
95
98
  "testcontainers": "^11.12.0",
96
99
  "ts-node": "^10.9.2",
@@ -102,8 +105,14 @@
102
105
  },
103
106
  "pnpm": {
104
107
  "overrides": {
105
- "ajv": "^8.18.0",
106
108
  "minimatch": "^10.2.2"
107
- }
109
+ },
110
+ "onlyBuiltDependencies": [
111
+ "cpu-features",
112
+ "esbuild",
113
+ "lefthook",
114
+ "protobufjs",
115
+ "ssh2"
116
+ ]
108
117
  }
109
118
  }