@rsbuild/plugin-type-check 1.2.1 → 1.2.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/README.md +2 -0
- package/dist/index.cjs +14 -16
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ An Rsbuild plugin to run TypeScript type checker in a separate process.
|
|
|
10
10
|
<a href="https://npmcharts.com/compare/@rsbuild/plugin-type-check?minimal=true"><img src="https://img.shields.io/npm/dm/@rsbuild/plugin-type-check.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="downloads" /></a>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
|
+
<img width="1472" alt="Screenshot 2025-02-14 at 23 08 37" src="https://github.com/user-attachments/assets/15d38419-34af-4a69-8841-8f9c608d8b68" />
|
|
14
|
+
|
|
13
15
|
## Introduction
|
|
14
16
|
|
|
15
17
|
This plugin internally integrates with [ts-checker-rspack-plugin](https://github.com/rspack-contrib/ts-checker-rspack-plugin).
|
package/dist/index.cjs
CHANGED
|
@@ -4,12 +4,8 @@ const __rslib_import_meta_url__ = /*#__PURE__*/ function() {
|
|
|
4
4
|
}();
|
|
5
5
|
var __webpack_require__ = {};
|
|
6
6
|
(()=>{
|
|
7
|
-
__webpack_require__.n =
|
|
8
|
-
var getter = module && module.__esModule ?
|
|
9
|
-
return module['default'];
|
|
10
|
-
} : function() {
|
|
11
|
-
return module;
|
|
12
|
-
};
|
|
7
|
+
__webpack_require__.n = (module)=>{
|
|
8
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
13
9
|
__webpack_require__.d(getter, {
|
|
14
10
|
a: getter
|
|
15
11
|
});
|
|
@@ -17,7 +13,7 @@ var __webpack_require__ = {};
|
|
|
17
13
|
};
|
|
18
14
|
})();
|
|
19
15
|
(()=>{
|
|
20
|
-
__webpack_require__.d =
|
|
16
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
21
17
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
22
18
|
enumerable: true,
|
|
23
19
|
get: definition[key]
|
|
@@ -25,12 +21,10 @@ var __webpack_require__ = {};
|
|
|
25
21
|
};
|
|
26
22
|
})();
|
|
27
23
|
(()=>{
|
|
28
|
-
__webpack_require__.o =
|
|
29
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
30
|
-
};
|
|
24
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
31
25
|
})();
|
|
32
26
|
(()=>{
|
|
33
|
-
__webpack_require__.r =
|
|
27
|
+
__webpack_require__.r = (exports1)=>{
|
|
34
28
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
35
29
|
value: 'Module'
|
|
36
30
|
});
|
|
@@ -42,8 +36,8 @@ var __webpack_require__ = {};
|
|
|
42
36
|
var __webpack_exports__ = {};
|
|
43
37
|
__webpack_require__.r(__webpack_exports__);
|
|
44
38
|
__webpack_require__.d(__webpack_exports__, {
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
PLUGIN_TYPE_CHECK_NAME: ()=>PLUGIN_TYPE_CHECK_NAME,
|
|
40
|
+
pluginTypeCheck: ()=>pluginTypeCheck
|
|
47
41
|
});
|
|
48
42
|
const external_node_fs_namespaceObject = require("node:fs");
|
|
49
43
|
var external_node_fs_default = /*#__PURE__*/ __webpack_require__.n(external_node_fs_namespaceObject);
|
|
@@ -115,8 +109,12 @@ const pluginTypeCheck = (options = {})=>({
|
|
|
115
109
|
});
|
|
116
110
|
}
|
|
117
111
|
});
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
112
|
+
exports.PLUGIN_TYPE_CHECK_NAME = __webpack_exports__.PLUGIN_TYPE_CHECK_NAME;
|
|
113
|
+
exports.pluginTypeCheck = __webpack_exports__.pluginTypeCheck;
|
|
114
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
115
|
+
"PLUGIN_TYPE_CHECK_NAME",
|
|
116
|
+
"pluginTypeCheck"
|
|
117
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
118
|
+
Object.defineProperty(exports, '__esModule', {
|
|
121
119
|
value: true
|
|
122
120
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsbuild/plugin-type-check",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"repository": "https://github.com/rspack-contrib/rsbuild-plugin-type-check",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -36,22 +36,22 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"deepmerge": "^4.3.1",
|
|
39
|
-
"ts-checker-rspack-plugin": "^1.1.
|
|
39
|
+
"ts-checker-rspack-plugin": "^1.1.2",
|
|
40
40
|
"json5": "^2.2.3",
|
|
41
41
|
"reduce-configs": "^1.1.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@biomejs/biome": "^1.9.4",
|
|
45
|
-
"@playwright/test": "^1.
|
|
46
|
-
"@rsbuild/core": "^1.
|
|
47
|
-
"@rslib/core": "^0.
|
|
45
|
+
"@playwright/test": "^1.52.0",
|
|
46
|
+
"@rsbuild/core": "^1.3.20",
|
|
47
|
+
"@rslib/core": "^0.7.1",
|
|
48
48
|
"@types/fs-extra": "^11.0.4",
|
|
49
|
-
"@types/node": "^22.
|
|
50
|
-
"fs-extra": "^11.
|
|
49
|
+
"@types/node": "^22.15.18",
|
|
50
|
+
"fs-extra": "^11.3.0",
|
|
51
51
|
"nano-staged": "^0.8.0",
|
|
52
|
-
"playwright": "^1.
|
|
53
|
-
"simple-git-hooks": "^2.
|
|
54
|
-
"typescript": "^5.
|
|
52
|
+
"playwright": "^1.52.0",
|
|
53
|
+
"simple-git-hooks": "^2.13.0",
|
|
54
|
+
"typescript": "^5.8.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@rsbuild/core": "1.x"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"optional": true
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"packageManager": "pnpm@
|
|
64
|
+
"packageManager": "pnpm@10.11.0",
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public",
|
|
67
67
|
"registry": "https://registry.npmjs.org/"
|