@liflig/load-secrets 1.1.105 → 1.1.106

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.
@@ -29,13 +29,10 @@ jobs:
29
29
 
30
30
  - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
31
31
  with:
32
- node-version: 24.13.1
32
+ node-version: 24.14.0
33
33
 
34
- - name: install dependencies
35
- run: npm ci
36
-
37
- - name: lint
38
- run: npm run lint
34
+ - name: build and test
35
+ run: make ci
39
36
 
40
37
  - name: conditionally pack
41
38
  if: ${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }}
package/.tool-versions CHANGED
@@ -1 +1 @@
1
- nodejs 24.13.1
1
+ nodejs 24.14.0
package/Makefile CHANGED
@@ -2,11 +2,18 @@
2
2
  all: build
3
3
 
4
4
  .PHONY: build
5
- build:
6
- @echo "Building..."
5
+ build: install build fmt lint-fix
6
+
7
+ .PHONY: ci
8
+ ci: install build lint fmt-check
9
+
10
+ .PHONY: install
11
+ install:
12
+ ifeq ($(CI),true)
13
+ npm ci
14
+ else
7
15
  npm install
8
- npm run build
9
- npm run lint
16
+ endif
10
17
 
11
18
  .PHONY: lint
12
19
  lint:
@@ -19,3 +26,17 @@ lint-fix:
19
26
  .PHONY: lint-fix-unsafe
20
27
  lint-fix-unsafe:
21
28
  npm run lint:fix-unsafe
29
+
30
+ .PHONY: fmt
31
+ fmt:
32
+ npm run fmt
33
+
34
+ .PHONY: fmt-check
35
+ fmt-check:
36
+ npm run fmt:check
37
+
38
+ .PHONY: upgrade-deps
39
+ upgrade-deps:
40
+ npm run upgrade-deps
41
+
42
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liflig/load-secrets",
3
- "version": "1.1.105",
3
+ "version": "1.1.106",
4
4
  "description": "Library for loading project secrets into AWS Secrets Manager",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -15,15 +15,18 @@
15
15
  "lint": "biome check",
16
16
  "lint:fix": "biome check --write",
17
17
  "lint:fix-unsafe": "biome check --write --unsafe",
18
- "semantic-release": "semantic-release"
18
+ "fmt": "biome format --write",
19
+ "fmt:check": "biome format",
20
+ "semantic-release": "semantic-release",
21
+ "upgrade-deps": "ncu --upgrade --install always --format group --reject @types/node"
19
22
  },
20
23
  "publishConfig": {
21
24
  "access": "public",
22
25
  "provenance": true
23
26
  },
24
27
  "dependencies": {
25
- "@aws-sdk/client-secrets-manager": "3.996.0",
26
- "@aws-sdk/client-sts": "3.996.0",
28
+ "@aws-sdk/client-secrets-manager": "3.1000.0",
29
+ "@aws-sdk/client-sts": "3.1000.0",
27
30
  "chalk": "5.6.2",
28
31
  "read": "5.0.1",
29
32
  "typescript": "5.9.3"
@@ -32,9 +35,9 @@
32
35
  "@biomejs/biome": "2.4.4",
33
36
  "@commitlint/cli": "20.4.2",
34
37
  "@commitlint/config-conventional": "20.4.2",
35
- "@types/node": "24.10.13",
36
- "@types/read": "3.0.0",
38
+ "@types/node": "24.10.15",
37
39
  "husky": "9.1.7",
40
+ "npm-check-updates": "19.6.3",
38
41
  "semantic-release": "25.0.3"
39
42
  }
40
43
  }