envilder 0.7.9 → 0.7.11

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 +8 -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.9
122
+ uses: macalbert/envilder/github-action@v0.7.11
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.9",
3
+ "version": "0.7.11",
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,9 +73,9 @@
73
73
  ],
74
74
  "type": "module",
75
75
  "dependencies": {
76
- "@aws-sdk/client-ssm": "^3.995.0",
77
- "@aws-sdk/credential-providers": "^3.995.0",
78
- "@types/node": "^25.3.0",
76
+ "@aws-sdk/client-ssm": "^3.1002.0",
77
+ "@aws-sdk/credential-providers": "^3.1002.0",
78
+ "@types/node": "^25.3.3",
79
79
  "commander": "^14.0.3",
80
80
  "dotenv": "^17.3.1",
81
81
  "inversify": "^7.11.0",
@@ -83,9 +83,9 @@
83
83
  "reflect-metadata": "^0.2.2"
84
84
  },
85
85
  "devDependencies": {
86
- "@biomejs/biome": "^2.4.4",
87
- "@commitlint/cli": "^20.4.2",
88
- "@commitlint/config-conventional": "^20.4.2",
86
+ "@biomejs/biome": "^2.4.5",
87
+ "@commitlint/cli": "^20.4.3",
88
+ "@commitlint/config-conventional": "^20.4.3",
89
89
  "@secretlint/secretlint-rule-preset-recommend": "^11.3.1",
90
90
  "@testcontainers/localstack": "^11.12.0",
91
91
  "@vercel/ncc": "^0.38.4",