@liflig/load-secrets 1.1.114 → 1.1.116

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.
package/.bun-version ADDED
@@ -0,0 +1 @@
1
+ 1.3.10
@@ -29,7 +29,10 @@ jobs:
29
29
 
30
30
  - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
31
31
  with:
32
- node-version: 24.14.0
32
+ node-version-file: ".node-version"
33
+ - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
34
+ with:
35
+ bun-version-file: ".bun-version"
33
36
 
34
37
  - name: build and test
35
38
  run: make ci
package/.husky/commit-msg CHANGED
@@ -1 +1 @@
1
- npx --no-install commitlint --edit "$1"
1
+ bunx --bun commitlint --edit "$1"
package/.node-version ADDED
@@ -0,0 +1 @@
1
+ 24.14.0
package/Makefile CHANGED
@@ -2,41 +2,25 @@
2
2
  all: build
3
3
 
4
4
  .PHONY: build
5
- build: install build fmt lint-fix
5
+ build: install
6
+ bun run build
7
+ bun run lint:fix
8
+ bun run fmt
6
9
 
7
10
  .PHONY: ci
8
- ci: install build lint fmt-check
11
+ ci: install
12
+ bun run build
13
+ bun run lint
14
+ bun run fmt:check
9
15
 
10
16
  .PHONY: install
11
17
  install:
12
18
  ifeq ($(CI),true)
13
- npm ci
19
+ bun ci
14
20
  else
15
- npm install
21
+ bun install
16
22
  endif
17
23
 
18
- .PHONY: lint
19
- lint:
20
- npm run lint
21
-
22
- .PHONY: lint-fix
23
- lint-fix:
24
- npm run lint:fix
25
-
26
- .PHONY: lint-fix-unsafe
27
- lint-fix-unsafe:
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
24
  .PHONY: upgrade-deps
39
25
  upgrade-deps:
40
- npm run upgrade-deps
41
-
42
-
26
+ bun run upgrade-deps
package/README.md CHANGED
@@ -5,7 +5,7 @@ Library for loading secrets into AWS Secrets Mananager from a configuration file
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- $ npm install @liflig/load-secrets
8
+ $ bun add @liflig/load-secrets
9
9
  ```
10
10
 
11
11
  ## Usage
package/biome.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
3
3
  "vcs": {
4
4
  "enabled": true,
5
5
  "clientKind": "git",