@homebound/truss 2.29.8 → 2.29.9
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/build/plugin/index.js +2 -4
- package/build/plugin/index.js.map +1 -1
- package/build/vitest.d.ts +2 -5
- package/package.json +12 -14
package/build/vitest.d.ts
CHANGED
|
@@ -25,11 +25,8 @@ type MatcherResult = {
|
|
|
25
25
|
declare function toHaveStyle(this: MatcherContext, received: unknown, expected: StyleExpectation): MatcherResult;
|
|
26
26
|
|
|
27
27
|
declare module "vitest" {
|
|
28
|
-
interface
|
|
29
|
-
toHaveStyle(expected: StyleExpectation):
|
|
30
|
-
}
|
|
31
|
-
interface AsymmetricMatchersContaining {
|
|
32
|
-
toHaveStyle(expected: StyleExpectation): void;
|
|
28
|
+
interface Matchers<R, T> {
|
|
29
|
+
toHaveStyle(expected: StyleExpectation): R;
|
|
33
30
|
}
|
|
34
31
|
}
|
|
35
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homebound/truss",
|
|
3
|
-
"version": "2.29.
|
|
3
|
+
"version": "2.29.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"bin": "cli.js",
|
|
@@ -32,30 +32,28 @@
|
|
|
32
32
|
},
|
|
33
33
|
"license": "ISC",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@babel/generator": "^
|
|
36
|
-
"@babel/parser": "^
|
|
37
|
-
"@babel/traverse": "^
|
|
38
|
-
"@babel/types": "^
|
|
35
|
+
"@babel/generator": "^8.0.0",
|
|
36
|
+
"@babel/parser": "^8.0.4",
|
|
37
|
+
"@babel/traverse": "^8.0.4",
|
|
38
|
+
"@babel/types": "^8.0.4",
|
|
39
39
|
"change-case": "^5.4.4",
|
|
40
40
|
"css-tree": "^3.2.1",
|
|
41
41
|
"csstype": "^3.2.3",
|
|
42
|
-
"jiti": "^2.
|
|
42
|
+
"jiti": "^2.7.0",
|
|
43
43
|
"ts-poet": "^6.12.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=18"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@homebound/tsconfig": "^1.
|
|
50
|
-
"@types/babel__generator": "^7.27.0",
|
|
51
|
-
"@types/babel__traverse": "^7.28.0",
|
|
49
|
+
"@homebound/tsconfig": "^1.2.0",
|
|
52
50
|
"@types/css-tree": "^3.2.0",
|
|
53
|
-
"@types/node": "^
|
|
54
|
-
"@types/react": "^19.2.
|
|
55
|
-
"jsdom": "^
|
|
56
|
-
"react": "^19.2.
|
|
51
|
+
"@types/node": "^26.5.0",
|
|
52
|
+
"@types/react": "^19.2.18",
|
|
53
|
+
"jsdom": "^30.0.1",
|
|
54
|
+
"react": "^19.2.8",
|
|
57
55
|
"tsup": "^8.5.1",
|
|
58
56
|
"typescript": "^6.0.3",
|
|
59
|
-
"vitest": "^
|
|
57
|
+
"vitest": "^5.0.0"
|
|
60
58
|
}
|
|
61
59
|
}
|