We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
check-package-json
check-package.json
1 parent bc3d676 commit 7c7f809Copy full SHA for 7c7f809
2 files changed
.github/workflows/CI.yaml
@@ -21,4 +21,4 @@ jobs:
21
- uses: oven-sh/setup-bun@v1
22
- run: make setup
23
- run: make build
24
- - run: make check-package-json
+ - run: make check-package.json
Makefile
@@ -2,12 +2,12 @@
2
build: setup
3
bun run ./script/build-esbuild-config.ts
4
5
-.PHONY: check-package-json
6
-check-package-json: build
+.PHONY: check-package.json
+check-package.json: build
7
./bin/package.json.ts check
8
9
.PHONY: check
10
-check: lint test build check-package-json
+check: lint test build check-package.json
11
12
.PHONY: test
13
test: check-dependency-constraints
@@ -42,4 +42,4 @@ format:
42
bun x @biomejs/biome check --write
43
44
.PHONY: prepublishOnly
45
-prepublishOnly: clean build check-package-json
+prepublishOnly: clean build check-package.json
0 commit comments