@lynx-js/rspeedy 0.9.8 → 0.9.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.
@@ -5,8 +5,8 @@ export const __webpack_modules__ = {
5
5
  "./src/plugins/dev.plugin.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6
6
  __webpack_require__.r(__webpack_exports__);
7
7
  __webpack_require__.d(__webpack_exports__, {
8
- findIp: ()=>findIp,
9
- pluginDev: ()=>pluginDev
8
+ pluginDev: ()=>pluginDev,
9
+ findIp: ()=>findIp
10
10
  });
11
11
  var external_node_module_ = __webpack_require__("node:module");
12
12
  var external_node_path_ = __webpack_require__("node:path");
@@ -0,0 +1,21 @@
1
+ export const __webpack_ids__ = [
2
+ "src_plugins_emitOnErrors_plugin_ts"
3
+ ];
4
+ export const __webpack_modules__ = {
5
+ "./src/plugins/emitOnErrors.plugin.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6
+ __webpack_require__.r(__webpack_exports__);
7
+ __webpack_require__.d(__webpack_exports__, {
8
+ pluginEmitOnErrors: ()=>pluginEmitOnErrors
9
+ });
10
+ function pluginEmitOnErrors() {
11
+ return {
12
+ name: 'lynx:rsbuild:emit-on-errors',
13
+ setup (api) {
14
+ api.modifyBundlerChain((chain)=>{
15
+ chain.optimization.emitOnErrors(true);
16
+ });
17
+ }
18
+ };
19
+ }
20
+ }
21
+ };
@@ -10,8 +10,9 @@ export const __webpack_modules__ = {
10
10
  var _debug_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./src/debug.ts");
11
11
  async function applyDebugPlugins(rsbuildInstance, config) {
12
12
  const debugPlugins = Object.freeze([
13
+ __webpack_require__.e("src_plugins_emitOnErrors_plugin_ts").then(__webpack_require__.bind(__webpack_require__, "./src/plugins/emitOnErrors.plugin.ts")).then(({ pluginEmitOnErrors })=>pluginEmitOnErrors()),
13
14
  Promise.all([
14
- __webpack_require__.e("vendors-node_modules_pnpm_javascript-stringify_2_1_0_node_modules_javascript-stringify_dist_i-b558be"),
15
+ __webpack_require__.e("vendors-node_modules_pnpm_javascript-stringify_2_1_0_node_modules_javascript-stringify_dist_i-562fbc"),
15
16
  __webpack_require__.e("src_plugins_inspect_plugin_ts")
16
17
  ]).then(__webpack_require__.bind(__webpack_require__, "./src/plugins/inspect.plugin.ts")).then(({ pluginInspect })=>pluginInspect(config)),
17
18
  __webpack_require__.e("src_plugins_stats_plugin_ts").then(__webpack_require__.bind(__webpack_require__, "./src/plugins/stats.plugin.ts")).then(({ pluginStats })=>pluginStats())
@@ -4,13 +4,13 @@ export const __webpack_ids__ = [
4
4
  export const __webpack_modules__ = {
5
5
  "./src/version.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6
6
  __webpack_require__.d(__webpack_exports__, {
7
- rsbuildVersion: ()=>core_.version,
8
7
  version: ()=>version,
9
- rspackVersion: ()=>rspackVersion
8
+ rspackVersion: ()=>rspackVersion,
9
+ rsbuildVersion: ()=>core_.version
10
10
  });
11
11
  var core_ = __webpack_require__("@rsbuild/core");
12
12
  var package_namespaceObject = {
13
- i8: "0.9.8"
13
+ i8: "0.9.9"
14
14
  };
15
15
  const version = package_namespaceObject.i8;
16
16
  const rspackVersion = core_.rspack.rspackVersion;
@@ -1,5 +1,5 @@
1
1
  export const __webpack_ids__ = [
2
- "vendors-node_modules_pnpm_javascript-stringify_2_1_0_node_modules_javascript-stringify_dist_i-b558be"
2
+ "vendors-node_modules_pnpm_javascript-stringify_2_1_0_node_modules_javascript-stringify_dist_i-562fbc"
3
3
  ];
4
4
  export const __webpack_modules__ = {
5
5
  "../../../node_modules/.pnpm/javascript-stringify@2.1.0/node_modules/javascript-stringify/dist/array.js": function(__unused_webpack_module, exports) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/rspeedy",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "A webpack/rspack-based frontend toolchain for Lynx",
5
5
  "keywords": [
6
6
  "webpack",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@rsbuild/core": "1.3.21",
50
50
  "@rsbuild/plugin-css-minimizer": "1.0.2",
51
- "@rsdoctor/rspack-plugin": "1.1.2",
51
+ "@rsdoctor/rspack-plugin": "1.1.3",
52
52
  "@lynx-js/chunk-loading-webpack-plugin": "^0.3.0",
53
53
  "@lynx-js/webpack-dev-transport": "^0.1.3",
54
54
  "@lynx-js/websocket": "^0.0.4"
@@ -71,7 +71,7 @@
71
71
  "type-fest": "^4.41.0",
72
72
  "typia": "9.3.1",
73
73
  "typia-rspack-plugin": "2.1.0",
74
- "vitest": "^3.1.4",
74
+ "vitest": "^3.2.2",
75
75
  "webpack": "^5.99.9",
76
76
  "@lynx-js/vitest-setup": "0.0.0"
77
77
  },