@lynx-js/rspeedy 0.15.0 → 0.15.1

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/index.d.ts CHANGED
@@ -793,7 +793,7 @@ export declare interface CssLoader {
793
793
  * })
794
794
  * ```
795
795
  */
796
- modules?: boolean | CssLoaderModules | undefined;
796
+ modules?: boolean | 'local' | 'global' | 'pure' | 'icss' | CssLoaderModules | undefined;
797
797
  }
798
798
 
799
799
  /**
@@ -1545,6 +1545,10 @@ export declare interface EntryDescription {
1545
1545
  * @defaultValue `'./src/index.js'`
1546
1546
  */
1547
1547
  import?: string | string[] | undefined;
1548
+ /**
1549
+ * The entry points that the current entry depends on. They must be loaded before this entry is loaded.
1550
+ */
1551
+ dependOn?: string | string[] | undefined;
1548
1552
  /**
1549
1553
  * This is an important option when using on-demand-loading or loading external resources like images, files, etc. If an incorrect value is specified you'll receive 404 errors while loading these resources.
1550
1554
  *
@@ -303,7 +303,7 @@ async function exit_onExit(signal) {
303
303
  await Promise.allSettled(exitPromises);
304
304
  }
305
305
  var package_namespaceObject = {
306
- rE: "0.15.0"
306
+ rE: "0.15.1"
307
307
  };
308
308
  const version_version = package_namespaceObject.rE;
309
309
  const rspackVersion = rspack.rspackVersion;
@@ -490,7 +490,7 @@ function isDeno() {
490
490
  return false;
491
491
  }
492
492
  var package_namespaceObject = {
493
- rE: "0.15.0"
493
+ rE: "0.15.1"
494
494
  };
495
495
  const version_version = package_namespaceObject.rE;
496
496
  const rspackVersion = rspack.rspackVersion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/rspeedy",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "A webpack/rspack-based frontend toolchain for Lynx",
5
5
  "keywords": [
6
6
  "webpack",
@@ -53,8 +53,8 @@
53
53
  "@rsdoctor/rspack-plugin": "~1.5.6",
54
54
  "@lynx-js/cache-events-webpack-plugin": "^0.1.0",
55
55
  "@lynx-js/chunk-loading-webpack-plugin": "^0.4.0",
56
- "@lynx-js/debug-metadata-rsbuild-plugin": "^0.1.0",
57
- "@lynx-js/web-rsbuild-server-middleware": "0.21.1",
56
+ "@lynx-js/debug-metadata-rsbuild-plugin": "^0.1.1",
57
+ "@lynx-js/web-rsbuild-server-middleware": "0.22.0",
58
58
  "@lynx-js/webpack-dev-transport": "^0.3.0",
59
59
  "@lynx-js/websocket": "^0.0.4"
60
60
  },