envilder 0.7.10 → 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 +3 -1
  2. package/package.json +17 -8
package/README.md CHANGED
@@ -9,6 +9,8 @@
9
9
  <span>Streamline your environment setup with AWS Parameter Store</span>
10
10
  </p>
11
11
 
12
+ ![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/macalbert/envilder?utm_source=oss&utm_medium=github&utm_campaign=macalbert%2Fenvilder&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)
13
+
12
14
  [![npm version](https://img.shields.io/npm/v/envilder.svg)](https://www.npmjs.com/package/envilder)
13
15
  [![npm downloads](https://img.shields.io/npm/dm/envilder.svg)](https://npmcharts.com/compare/envilder)
14
16
  [![CI Tests](https://github.com/macalbert/envilder/actions/workflows/tests.yml/badge.svg)](https://github.com/macalbert/envilder/actions/workflows/tests.yml)
@@ -117,7 +119,7 @@ Use Envilder directly in your CI/CD workflows with our official GitHub Action:
117
119
  aws-region: us-east-1
118
120
 
119
121
  - name: Pull secrets from AWS SSM
120
- uses: macalbert/envilder/github-action@v0.7.10
122
+ uses: macalbert/envilder/github-action@v0.7.12
121
123
  with:
122
124
  map-file: param-map.json
123
125
  env-file: .env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.7.10",
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.1000.0",
77
- "@aws-sdk/credential-providers": "^3.1000.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",
@@ -83,14 +85,15 @@
83
85
  "reflect-metadata": "^0.2.2"
84
86
  },
85
87
  "devDependencies": {
86
- "@biomejs/biome": "^2.4.4",
87
- "@commitlint/cli": "^20.4.2",
88
- "@commitlint/config-conventional": "^20.4.2",
88
+ "@biomejs/biome": "^2.4.5",
89
+ "@commitlint/cli": "^20.4.3",
90
+ "@commitlint/config-conventional": "^20.4.3",
89
91
  "@secretlint/secretlint-rule-preset-recommend": "^11.3.1",
90
92
  "@testcontainers/localstack": "^11.12.0",
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
  }