@regardio/dev 1.13.5 → 1.13.8

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.
Files changed (2) hide show
  1. package/package.json +10 -12
  2. package/src/biome/preset.json +13 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/dev",
4
- "version": "1.13.5",
4
+ "version": "1.13.8",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -69,20 +69,18 @@
69
69
  "lint-md": "dist/bin/lint-md.js",
70
70
  "lint-package": "dist/bin/lint-package.js"
71
71
  },
72
- "files": [
73
- "dist",
74
- "src"
75
- ],
72
+ "files": ["dist", "src"],
76
73
  "scripts": {
77
74
  "build": "tsc -p tsconfig.build.json",
78
75
  "clean": "tsx src/bin/exec-clean.ts .turbo dist",
79
- "fix": "run-p fix:*",
76
+ "fix": "run-s fix:pkg fix:md fix:biome",
80
77
  "fix:biome": "biome check --write --unsafe .",
81
78
  "fix:md": "markdownlint-cli2 --fix",
82
- "fix:pkg": "tsx src/bin/lint-package.ts",
83
- "lint": "run-p lint:*",
79
+ "fix:pkg": "tsx src/bin/lint-package.ts --fix",
80
+ "lint": "run-s lint:md lint:biome",
84
81
  "lint:biome": "biome check .",
85
82
  "lint:md": "markdownlint-cli2",
83
+ "lint:pkg": "tsx src/bin/lint-package.ts",
86
84
  "prepare": "husky",
87
85
  "release": "tsx src/bin/flow-release.ts",
88
86
  "report": "vitest run --coverage",
@@ -92,16 +90,16 @@
92
90
  "version": "tsx src/bin/flow-changeset.ts version"
93
91
  },
94
92
  "dependencies": {
95
- "@biomejs/biome": "2.4.0",
93
+ "@biomejs/biome": "2.4.4",
96
94
  "@changesets/changelog-github": "0.5.2",
97
95
  "@changesets/cli": "2.29.8",
98
- "@commitlint/cli": "20.4.1",
99
- "@commitlint/config-conventional": "20.4.1",
96
+ "@commitlint/cli": "20.4.2",
97
+ "@commitlint/config-conventional": "20.4.2",
100
98
  "@playwright/test": "1.58.2",
101
99
  "@testing-library/jest-dom": "6.9.1",
102
100
  "@testing-library/react": "16.3.2",
103
101
  "@total-typescript/ts-reset": "0.6.1",
104
- "@types/node": "25.2.3",
102
+ "@types/node": "25.3.0",
105
103
  "@vitest/coverage-v8": "4.0.18",
106
104
  "@vitest/ui": "4.0.18",
107
105
  "husky": "9.1.7",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "files": {
42
42
  "ignoreUnknown": false,
43
- "includes": ["**", "!**/package.json"],
43
+ "includes": ["**"],
44
44
  "maxSize": 1048576
45
45
  },
46
46
  "formatter": {
@@ -327,6 +327,18 @@
327
327
  }
328
328
  }
329
329
  },
330
+ "overrides": [
331
+ {
332
+ "assist": {
333
+ "actions": {
334
+ "source": {
335
+ "useSortedKeys": "off"
336
+ }
337
+ }
338
+ },
339
+ "includes": ["**/package.json"]
340
+ }
341
+ ],
330
342
  "root": true,
331
343
  "vcs": {
332
344
  "clientKind": "git",