@esmx/rspack 3.0.0-rc.80 → 3.0.0-rc.82

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.
@@ -1,8 +1,8 @@
1
- import { applyChainConfig2 } from "./config2.mjs";
1
+ import { applyChainConfig1 } from "./config1.mjs";
2
2
  import { ManifestPlugin } from "./manifest-plugin.mjs";
3
3
  import { parseOptions } from "./parse.mjs";
4
4
  export function initModuleLink(chain, options) {
5
5
  const opts = parseOptions(options);
6
- applyChainConfig2(chain, opts);
6
+ applyChainConfig1(chain, opts);
7
7
  chain.plugin("module-link-manifest").use(ManifestPlugin, [opts]);
8
8
  }
package/package.json CHANGED
@@ -63,7 +63,7 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@esmx/import": "3.0.0-rc.80",
66
+ "@esmx/import": "3.0.0-rc.82",
67
67
  "@npmcli/arborist": "^9.1.6",
68
68
  "@rspack/core": "^1.6.6",
69
69
  "css-loader": "^7.1.2",
@@ -80,7 +80,7 @@
80
80
  },
81
81
  "devDependencies": {
82
82
  "@biomejs/biome": "2.3.7",
83
- "@esmx/core": "3.0.0-rc.80",
83
+ "@esmx/core": "3.0.0-rc.82",
84
84
  "@types/node": "^24.0.0",
85
85
  "@types/npmcli__arborist": "^6.3.1",
86
86
  "@types/pacote": "^11.1.8",
@@ -91,7 +91,7 @@
91
91
  "unbuild": "3.6.1",
92
92
  "vitest": "3.2.4"
93
93
  },
94
- "version": "3.0.0-rc.80",
94
+ "version": "3.0.0-rc.82",
95
95
  "type": "module",
96
96
  "private": false,
97
97
  "exports": {
@@ -110,5 +110,5 @@
110
110
  "template",
111
111
  "public"
112
112
  ],
113
- "gitHead": "3fca699d5b4daa50c2c53f4adea0e8a71e14765b"
113
+ "gitHead": "8dd1d8bca1d37902915fef48c1949dba3c1afcf8"
114
114
  }
@@ -1,6 +1,6 @@
1
1
  import type RspackChain from 'rspack-chain';
2
- // import { applyChainConfig1 } from './config1';
3
- import { applyChainConfig2 } from './config2';
2
+ import { applyChainConfig1 } from './config1';
3
+ // import { applyChainConfig2 } from './config2';
4
4
  import { ManifestPlugin } from './manifest-plugin';
5
5
  import { parseOptions } from './parse';
6
6
  import type { ModuleLinkPluginOptions } from './types';
@@ -10,8 +10,8 @@ export function initModuleLink(
10
10
  options: ModuleLinkPluginOptions
11
11
  ): void {
12
12
  const opts = parseOptions(options);
13
- // applyChainConfig1(chain, opts);
14
- applyChainConfig2(chain, opts);
13
+ applyChainConfig1(chain, opts);
14
+ // applyChainConfig2(chain, opts);
15
15
 
16
16
  chain.plugin('module-link-manifest').use(ManifestPlugin, [opts]);
17
17
  }