@regardio/dev 1.13.3 → 1.13.5

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.
@@ -1,9 +1,9 @@
1
1
  import type { PlaywrightTestConfig } from '@playwright/test';
2
2
  export interface BuildPlaywrightBaseConfigParams {
3
- appUrl: string;
4
3
  appPort: number;
5
- devices: typeof import('@playwright/test').devices;
4
+ appUrl: string;
6
5
  ci?: boolean;
6
+ devices: typeof import('@playwright/test').devices;
7
7
  webServerCommand: string;
8
8
  }
9
9
  export declare function buildPlaywrightBaseConfig({ appUrl, appPort, devices, ci, webServerCommand, }: BuildPlaywrightBaseConfigParams): PlaywrightTestConfig;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/playwright/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,MAAM,WAAW,+BAA+B;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,cAAc,kBAAkB,EAAE,OAAO,CAAC;IACnD,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAMD,wBAAgB,yBAAyB,CAAC,EACxC,MAAM,EACN,OAAO,EACP,OAAO,EACP,EAAqB,EACrB,gBAAgB,GACjB,EAAE,+BAA+B,GAAG,oBAAoB,CA0CxD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/playwright/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,MAAM,WAAW,+BAA+B;IAC9C,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,OAAO,EAAE,cAAc,kBAAkB,EAAE,OAAO,CAAC;IACnD,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAMD,wBAAgB,yBAAyB,CAAC,EACxC,MAAM,EACN,OAAO,EACP,OAAO,EACP,EAAqB,EACrB,gBAAgB,GACjB,EAAE,+BAA+B,GAAG,oBAAoB,CA0CxD"}
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.3",
4
+ "version": "1.13.5",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -92,24 +92,24 @@
92
92
  "version": "tsx src/bin/flow-changeset.ts version"
93
93
  },
94
94
  "dependencies": {
95
- "@biomejs/biome": "2.3.13",
95
+ "@biomejs/biome": "2.4.0",
96
96
  "@changesets/changelog-github": "0.5.2",
97
97
  "@changesets/cli": "2.29.8",
98
- "@commitlint/cli": "20.4.0",
99
- "@commitlint/config-conventional": "20.4.0",
100
- "@playwright/test": "1.58.1",
98
+ "@commitlint/cli": "20.4.1",
99
+ "@commitlint/config-conventional": "20.4.1",
100
+ "@playwright/test": "1.58.2",
101
101
  "@testing-library/jest-dom": "6.9.1",
102
102
  "@testing-library/react": "16.3.2",
103
103
  "@total-typescript/ts-reset": "0.6.1",
104
- "@types/node": "25.1.0",
104
+ "@types/node": "25.2.3",
105
105
  "@vitest/coverage-v8": "4.0.18",
106
106
  "@vitest/ui": "4.0.18",
107
107
  "husky": "9.1.7",
108
- "jsdom": "27.4.0",
109
- "markdownlint-cli2": "0.20.0",
108
+ "jsdom": "28.1.0",
109
+ "markdownlint-cli2": "0.21.0",
110
110
  "npm-run-all": "4.1.5",
111
111
  "postcss": "8.5.6",
112
- "rimraf": "6.1.2",
112
+ "rimraf": "6.1.3",
113
113
  "sort-package-json": "3.6.1",
114
114
  "tsx": "4.21.0",
115
115
  "typescript": "5.9.3",
@@ -2,13 +2,18 @@
2
2
  "$schema": "https://biomejs.dev/schemas/latest/schema.json",
3
3
  "assist": {
4
4
  "actions": {
5
+ "recommended": true,
5
6
  "source": {
7
+ "noDuplicateClasses": "on",
6
8
  "organizeImports": "on",
9
+ "recommended": true,
7
10
  "useSortedAttributes": "on",
11
+ "useSortedInterfaceMembers": "on",
8
12
  "useSortedKeys": "on",
9
13
  "useSortedProperties": "on"
10
14
  }
11
- }
15
+ },
16
+ "enabled": true
12
17
  },
13
18
  "css": {
14
19
  "assist": {
@@ -20,12 +25,15 @@
20
25
  "indentWidth": 2,
21
26
  "lineEnding": "lf",
22
27
  "lineWidth": 100,
23
- "quoteStyle": "double"
28
+ "quoteStyle": "double",
29
+ "trailingNewline": true
24
30
  },
31
+ "globals": [],
25
32
  "linter": {
26
33
  "enabled": true
27
34
  },
28
35
  "parser": {
36
+ "allowWrongLineComments": false,
29
37
  "cssModules": true,
30
38
  "tailwindDirectives": true
31
39
  }
@@ -37,6 +45,7 @@
37
45
  },
38
46
  "formatter": {
39
47
  "attributePosition": "multiline",
48
+ "bracketSameLine": false,
40
49
  "bracketSpacing": true,
41
50
  "enabled": true,
42
51
  "expand": "auto",
@@ -45,6 +54,7 @@
45
54
  "indentWidth": 2,
46
55
  "lineEnding": "lf",
47
56
  "lineWidth": 100,
57
+ "trailingNewline": true,
48
58
  "useEditorconfig": true
49
59
  },
50
60
  "graphql": {
@@ -52,12 +62,30 @@
52
62
  "enabled": true
53
63
  },
54
64
  "formatter": {
65
+ "bracketSpacing": true,
55
66
  "enabled": false,
56
67
  "indentStyle": "space",
57
68
  "indentWidth": 2,
58
69
  "lineEnding": "lf",
59
70
  "lineWidth": 100,
60
- "quoteStyle": "double"
71
+ "quoteStyle": "double",
72
+ "trailingNewline": true
73
+ },
74
+ "linter": {
75
+ "enabled": true
76
+ }
77
+ },
78
+ "grit": {
79
+ "assist": {
80
+ "enabled": true
81
+ },
82
+ "formatter": {
83
+ "enabled": true,
84
+ "indentStyle": "space",
85
+ "indentWidth": 2,
86
+ "lineEnding": "lf",
87
+ "lineWidth": 100,
88
+ "trailingNewline": true
61
89
  },
62
90
  "linter": {
63
91
  "enabled": true
@@ -76,10 +104,16 @@
76
104
  "indentStyle": "space",
77
105
  "indentWidth": 2,
78
106
  "lineEnding": "lf",
79
- "lineWidth": 100
107
+ "lineWidth": 100,
108
+ "selfCloseVoidElements": "never",
109
+ "trailingNewline": true,
110
+ "whitespaceSensitivity": "css"
80
111
  },
81
112
  "linter": {
82
113
  "enabled": true
114
+ },
115
+ "parser": {
116
+ "interpolation": false
83
117
  }
84
118
  },
85
119
  "javascript": {
@@ -98,10 +132,12 @@
98
132
  "jsxQuoteStyle": "double",
99
133
  "lineEnding": "lf",
100
134
  "lineWidth": 100,
135
+ "operatorLinebreak": "before",
101
136
  "quoteProperties": "asNeeded",
102
137
  "quoteStyle": "single",
103
138
  "semicolons": "always",
104
- "trailingCommas": "all"
139
+ "trailingCommas": "all",
140
+ "trailingNewline": true
105
141
  },
106
142
  "globals": [],
107
143
  "jsxRuntime": "transparent",
@@ -109,6 +145,7 @@
109
145
  "enabled": true
110
146
  },
111
147
  "parser": {
148
+ "gritMetavariables": false,
112
149
  "jsxEverywhere": true,
113
150
  "unsafeParameterDecoratorsEnabled": false
114
151
  }
@@ -125,7 +162,8 @@
125
162
  "indentWidth": 2,
126
163
  "lineEnding": "lf",
127
164
  "lineWidth": 100,
128
- "trailingCommas": "none"
165
+ "trailingCommas": "none",
166
+ "trailingNewline": true
129
167
  },
130
168
  "linter": {
131
169
  "enabled": true
@@ -152,6 +190,7 @@
152
190
  "correctness": {
153
191
  "noInvalidPositionAtImportRule": "off",
154
192
  "noUnknownFunction": "off",
193
+ "noUnknownPseudoElement": "off",
155
194
  "noUnknownTypeSelector": "off",
156
195
  "recommended": true,
157
196
  "useUniqueElementIds": {
@@ -1,10 +1,10 @@
1
1
  import type { PlaywrightTestConfig } from '@playwright/test';
2
2
 
3
3
  export interface BuildPlaywrightBaseConfigParams {
4
- appUrl: string;
5
4
  appPort: number;
6
- devices: typeof import('@playwright/test').devices;
5
+ appUrl: string;
7
6
  ci?: boolean;
7
+ devices: typeof import('@playwright/test').devices;
8
8
  webServerCommand: string;
9
9
  }
10
10