envilder 0.7.3 → 0.7.4

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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
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,28 +16,6 @@
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
- "changelog": "conventional-changelog -p angular -i docs/CHANGELOG.md -s",
33
- "changelog:all": "conventional-changelog -p angular -i docs/CHANGELOG.md -s -r 0",
34
- "publish": "pnpm lint && pnpm build && pnpm test && pnpm pack --dry-run && pnpm publish",
35
- "action-publish": "pnpm build:gha && pnpm verify:gha",
36
- "release-patch": "pnpm version patch && pnpm changelog",
37
- "release-minor": "pnpm version minor && pnpm changelog",
38
- "release-major": "pnpm version major && pnpm changelog",
39
- "release-prerelease": "pnpm version prerelease"
40
- },
41
19
  "keywords": [
42
20
  "env",
43
21
  "dotenv",
@@ -75,32 +53,53 @@
75
53
  ],
76
54
  "type": "module",
77
55
  "dependencies": {
78
- "@aws-sdk/client-ssm": "^3.932.0",
79
- "@aws-sdk/credential-providers": "^3.932.0",
80
- "@types/node": "^24.10.1",
56
+ "@aws-sdk/client-ssm": "^3.958.0",
57
+ "@aws-sdk/credential-providers": "^3.958.0",
58
+ "@types/node": "^25.0.3",
81
59
  "commander": "^14.0.2",
82
60
  "dotenv": "^17.2.3",
83
- "inversify": "^7.10.4",
61
+ "inversify": "^7.10.8",
84
62
  "picocolors": "^1.1.1",
85
63
  "reflect-metadata": "^0.2.2"
86
64
  },
87
65
  "devDependencies": {
88
- "@biomejs/biome": "^2.3.5",
89
- "@commitlint/cli": "^20.1.0",
90
- "@commitlint/config-conventional": "^20.0.0",
66
+ "@biomejs/biome": "^2.3.10",
67
+ "@commitlint/cli": "^20.3.0",
68
+ "@commitlint/config-conventional": "^20.3.0",
91
69
  "@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
92
- "@testcontainers/localstack": "^11.8.1",
70
+ "@testcontainers/localstack": "^11.11.0",
93
71
  "@vercel/ncc": "^0.38.4",
94
- "@vitest/coverage-v8": "^4.0.9",
72
+ "@vitest/coverage-v8": "^4.0.16",
95
73
  "conventional-changelog-cli": "^5.0.0",
96
- "glob": "^11.0.3",
74
+ "glob": "^13.0.0",
97
75
  "secretlint": "^11.2.5",
98
- "testcontainers": "^11.8.1",
76
+ "testcontainers": "^11.11.0",
99
77
  "ts-node": "^10.9.2",
100
78
  "typescript": "^5.9.3",
101
- "vitest": "^4.0.9"
79
+ "vitest": "^4.0.16"
102
80
  },
103
81
  "engines": {
104
82
  "node": ">=20.0.0"
83
+ },
84
+ "scripts": {
85
+ "clean": "pnpm store prune && pnpm dlx rimraf lib && pnpm dlx rimraf coverage && pnpm dlx rimraf node_modules",
86
+ "build": "tsc",
87
+ "build:gha": "ncc build src/apps/gha/Index.ts -o github-action/dist --minify",
88
+ "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)",
89
+ "local:install": "pnpm build && node --loader ts-node/esm scripts/pack-and-install.ts",
90
+ "local:test-run": "pnpm build && node lib/apps/cli/Index.js --map=tests/sample/param-map.json --envfile=tests/sample/autogenerated.env",
91
+ "format": "biome format",
92
+ "format:write": "biome format --write",
93
+ "lint": "secretlint \"**/*\" && biome check --write && tsc --noEmit",
94
+ "lint:fix": "biome lint --fix",
95
+ "test": "vitest run --reporter=verbose --coverage",
96
+ "test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
97
+ "changelog": "conventional-changelog -p angular -i docs/CHANGELOG.md -s",
98
+ "changelog:all": "conventional-changelog -p angular -i docs/CHANGELOG.md -s -r 0",
99
+ "action-publish": "pnpm build:gha && pnpm verify:gha",
100
+ "release-patch": "pnpm version patch && pnpm changelog",
101
+ "release-minor": "pnpm version minor && pnpm changelog",
102
+ "release-major": "pnpm version major && pnpm changelog",
103
+ "release-prerelease": "pnpm version prerelease"
105
104
  }
106
- }
105
+ }