@shipfox/client-workflows 6.0.1 → 6.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/client-workflows",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@swc/helpers": "^0.5.17",
|
|
29
29
|
"date-fns": "^4.1.0",
|
|
30
|
-
"@shipfox/api-definitions-dto": "9.0.
|
|
31
|
-
"@shipfox/api-workflows-dto": "9.0.
|
|
30
|
+
"@shipfox/api-definitions-dto": "9.0.2",
|
|
31
|
+
"@shipfox/api-workflows-dto": "9.0.2",
|
|
32
32
|
"@shipfox/client-api": "6.0.1",
|
|
33
|
-
"@shipfox/client-logs": "6.0.
|
|
34
|
-
"@shipfox/client-projects": "6.0.
|
|
35
|
-
"@shipfox/client-shell": "6.0.
|
|
36
|
-
"@shipfox/
|
|
37
|
-
"@shipfox/client-ui": "6.0.
|
|
38
|
-
"@shipfox/
|
|
33
|
+
"@shipfox/client-logs": "6.0.2",
|
|
34
|
+
"@shipfox/client-projects": "6.0.2",
|
|
35
|
+
"@shipfox/client-shell": "6.0.2",
|
|
36
|
+
"@shipfox/react-ui": "0.3.7",
|
|
37
|
+
"@shipfox/client-ui": "6.0.2",
|
|
38
|
+
"@shipfox/client-triggers": "6.0.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@tanstack/react-query": "^5.101.0",
|
|
@@ -61,6 +61,10 @@ async function captureHighlightedSourcePanel(
|
|
|
61
61
|
},
|
|
62
62
|
{timeout: 10_000},
|
|
63
63
|
);
|
|
64
|
+
const loadedCodeFonts = await document.fonts.load('400 14px "Commit Mono"');
|
|
65
|
+
if (!loadedCodeFonts.some((font) => font.status === 'loaded')) {
|
|
66
|
+
throw new Error('Commit Mono has not loaded yet');
|
|
67
|
+
}
|
|
64
68
|
await argosScreenshot(ctx, screenshotName);
|
|
65
69
|
}
|
|
66
70
|
|