@rstest/browser 0.9.8 → 0.9.10
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/dist/browser-container/container-static/js/{464.ae4bcbdfb4.js → 102.e63e4aa16d.js} +2972 -2967
- package/dist/browser-container/container-static/js/102.e63e4aa16d.js.LICENSE.txt +1 -0
- package/dist/browser-container/container-static/js/{index.c13dfe1ecf.js → index.af52585634.js} +11 -11
- package/dist/browser-container/container-static/js/{lib-react.9b88cb98a5.js → lib-react.9e703e1b29.js} +2288 -2298
- package/dist/browser-container/container-static/js/lib-react.9e703e1b29.js.LICENSE.txt +1 -0
- package/dist/browser-container/index.html +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
- package/src/hostController.ts +2 -1
- package/dist/browser-container/container-static/js/464.ae4bcbdfb4.js.LICENSE.txt +0 -1
- package/dist/browser-container/container-static/js/lib-react.9b88cb98a5.js.LICENSE.txt +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! LICENSE: lib-react.9e703e1b29.js.LICENSE.txt */
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<script>
|
|
13
13
|
window.__RSTEST_BROWSER_OPTIONS__ = __RSTEST_OPTIONS_PLACEHOLDER__;
|
|
14
14
|
</script>
|
|
15
|
-
<script defer src="/container-static/js/lib-react.
|
|
15
|
+
<script defer src="/container-static/js/lib-react.9e703e1b29.js"></script><script defer src="/container-static/js/102.e63e4aa16d.js"></script><script defer src="/container-static/js/index.af52585634.js"></script><link href="/container-static/css/index.5c72297783.css" rel="stylesheet"></head>
|
|
16
16
|
<body>
|
|
17
17
|
<div id="root"></div>
|
|
18
18
|
</body>
|
package/dist/index.js
CHANGED
|
@@ -2949,7 +2949,7 @@ const applyDefaultWatchOptions = (rspackConfig, isWatchMode)=>{
|
|
|
2949
2949
|
}
|
|
2950
2950
|
rspackConfig.watchOptions.ignored = castArray(rspackConfig.watchOptions.ignored || []);
|
|
2951
2951
|
if (0 === rspackConfig.watchOptions.ignored.length) rspackConfig.watchOptions.ignored.push('**/.git', '**/node_modules');
|
|
2952
|
-
rspackConfig.output?.path
|
|
2952
|
+
if (rspackConfig.output?.path) rspackConfig.watchOptions.ignored.push(rspackConfig.output.path);
|
|
2953
2953
|
};
|
|
2954
2954
|
const resolveListenPort = (listenPort, httpServer)=>{
|
|
2955
2955
|
if (listenPort) return listenPort;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rstest/browser",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.10",
|
|
4
4
|
"description": "Browser mode support for Rstest testing framework.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rstest",
|
|
@@ -48,22 +48,22 @@
|
|
|
48
48
|
"ws": "^8.20.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@rslib/core": "0.21.
|
|
51
|
+
"@rslib/core": "0.21.3",
|
|
52
52
|
"@types/convert-source-map": "^2.0.3",
|
|
53
53
|
"@types/picomatch": "^4.0.3",
|
|
54
54
|
"@types/ws": "^8.18.1",
|
|
55
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
55
|
+
"@typescript/native-preview": "7.0.0-dev.20260428.1",
|
|
56
56
|
"@vitest/snapshot": "^3.2.4",
|
|
57
57
|
"birpc": "^4.0.0",
|
|
58
58
|
"picomatch": "^4.0.4",
|
|
59
59
|
"playwright": "^1.59.1",
|
|
60
60
|
"@rstest/browser-ui": "0.0.0",
|
|
61
|
-
"@rstest/
|
|
62
|
-
"@rstest/
|
|
61
|
+
"@rstest/tsconfig": "0.0.1",
|
|
62
|
+
"@rstest/core": "0.9.10"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"playwright": "^1.49.1",
|
|
66
|
-
"@rstest/core": "^0.9.
|
|
66
|
+
"@rstest/core": "^0.9.10"
|
|
67
67
|
},
|
|
68
68
|
"peerDependenciesMeta": {
|
|
69
69
|
"playwright": {
|
package/src/hostController.ts
CHANGED
|
@@ -506,8 +506,9 @@ const applyDefaultWatchOptions = (
|
|
|
506
506
|
rspackConfig.watchOptions.ignored.push('**/.git', '**/node_modules');
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
rspackConfig.output?.path
|
|
509
|
+
if (rspackConfig.output?.path) {
|
|
510
510
|
rspackConfig.watchOptions.ignored.push(rspackConfig.output.path);
|
|
511
|
+
}
|
|
511
512
|
};
|
|
512
513
|
|
|
513
514
|
type LazyCompilationModule = {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! LICENSE: 464.ae4bcbdfb4.js.LICENSE.txt */
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! LICENSE: lib-react.9b88cb98a5.js.LICENSE.txt */
|