@liflig/load-secrets 1.1.113 → 1.1.115
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 +1 -0
- package/.github/workflows/ci.yaml +4 -0
- package/.husky/commit-msg +1 -1
- package/Makefile +11 -27
- package/README.md +1 -1
- package/biome.jsonc +1 -1
- package/bun.lock +904 -0
- package/bunfig.toml +2 -0
- package/lib/cli/reporter.d.ts +12 -2
- package/lib/cli/reporter.js +11 -2
- package/lib/cli/reporter.js.map +1 -1
- package/mise.toml +2 -0
- package/package.json +10 -12
- package/src/cli/reporter.ts +24 -2
- package/.tool-versions +0 -1
package/.bun-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.3.10
|
package/.husky/commit-msg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
bunx --bun commitlint --edit "$1"
|
package/Makefile
CHANGED
|
@@ -2,41 +2,25 @@
|
|
|
2
2
|
all: build
|
|
3
3
|
|
|
4
4
|
.PHONY: build
|
|
5
|
-
build: install
|
|
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
|
|
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
|
-
|
|
19
|
+
bun ci
|
|
14
20
|
else
|
|
15
|
-
|
|
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
|
-
|
|
41
|
-
|
|
42
|
-
|
|
26
|
+
bun run upgrade-deps
|
package/README.md
CHANGED
package/biome.jsonc
CHANGED