@yunarch/config-web 0.1.1 → 0.1.2
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/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"name": "@yunarch/config-web",
|
|
5
5
|
"description": "Shared configurations for web projects.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"gen": "bun run gen:eslint-typegen && bun run gen:oxlint-compatgen",
|
|
50
50
|
"gen:eslint-typegen": "bun run ./scripts/eslint-typegen.ts",
|
|
51
51
|
"gen:oxlint-compatgen": "bun run ./scripts/oxlint-compatgen.ts && prettier --write ./src/linters/oxlint.config.jsonc",
|
|
52
|
-
"lint": "
|
|
52
|
+
"lint": "bun run lint:code && bun run lint:ts",
|
|
53
53
|
"lint:code": "oxlint && eslint .",
|
|
54
54
|
"lint:ts": "tsc --noEmit",
|
|
55
55
|
"lint:inspect": "bunx @eslint/config-inspector --config eslint.config.ts",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"build": "bun run gen && tsup",
|
|
60
60
|
"test": "vitest --typecheck run",
|
|
61
61
|
"test:watch": "vitest --typecheck watch",
|
|
62
|
-
"release": "
|
|
62
|
+
"release": "bun run lint && bun run test && bun publish --dry-run && bunx bumpp && bun run build && bun publish"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"@biomejs/biome": ">= 1 || < 2",
|
|
@@ -119,7 +119,6 @@
|
|
|
119
119
|
"lint-staged": "16.0.0",
|
|
120
120
|
"rimraf": "6.0.1",
|
|
121
121
|
"tsup": "8.5.0",
|
|
122
|
-
"turbo": "2.5.3",
|
|
123
122
|
"typescript": "5.8.3",
|
|
124
123
|
"vitest": "3.1.4",
|
|
125
124
|
"@types/node": "22.15.20"
|