@esmx/rspack 3.0.0-rc.27 → 3.0.0-rc.29

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/app.mjs CHANGED
@@ -104,7 +104,7 @@ function rewriteBuild(esmx, options = {}) {
104
104
  esmx.resolvePath("dist/index.mjs"),
105
105
  `
106
106
  async function start() {
107
- const options = await import('./node/src/entry.node.mjs').then(
107
+ const options = await import('./node/exports/src/entry.node.mjs').then(
108
108
  (mod) => mod.default
109
109
  );
110
110
  const { Esmx } = await import('@esmx/core');
package/package.json CHANGED
@@ -63,8 +63,8 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@esmx/import": "3.0.0-rc.27",
67
- "@esmx/rspack-module-link-plugin": "3.0.0-rc.27",
66
+ "@esmx/import": "3.0.0-rc.29",
67
+ "@esmx/rspack-module-link-plugin": "3.0.0-rc.29",
68
68
  "@npmcli/arborist": "^9.0.1",
69
69
  "@rspack/core": "1.4.2",
70
70
  "css-loader": "^7.1.2",
@@ -79,9 +79,9 @@
79
79
  },
80
80
  "devDependencies": {
81
81
  "@biomejs/biome": "1.9.4",
82
- "@esmx/core": "3.0.0-rc.27",
83
- "@esmx/lint": "3.0.0-rc.27",
84
- "@types/node": "^24.0.10",
82
+ "@esmx/core": "3.0.0-rc.29",
83
+ "@esmx/lint": "3.0.0-rc.29",
84
+ "@types/node": "^24.0.0",
85
85
  "@types/npmcli__arborist": "^6.3.1",
86
86
  "@types/pacote": "^11.1.8",
87
87
  "@types/webpack-hot-middleware": "^2.25.9",
@@ -92,7 +92,7 @@
92
92
  "unbuild": "3.5.0",
93
93
  "vitest": "3.2.4"
94
94
  },
95
- "version": "3.0.0-rc.27",
95
+ "version": "3.0.0-rc.29",
96
96
  "type": "module",
97
97
  "private": false,
98
98
  "exports": {
@@ -111,5 +111,5 @@
111
111
  "template",
112
112
  "public"
113
113
  ],
114
- "gitHead": "79ce8ceea4a9c738d9ebeb4607d925fc411d3df1"
114
+ "gitHead": "98aba9be77d48240c61d3bc7a507970533faa7da"
115
115
  }
package/src/app.ts CHANGED
@@ -294,7 +294,7 @@ function rewriteBuild(esmx: Esmx, options: RspackAppOptions = {}) {
294
294
  esmx.resolvePath('dist/index.mjs'),
295
295
  `
296
296
  async function start() {
297
- const options = await import('./node/src/entry.node.mjs').then(
297
+ const options = await import('./node/exports/src/entry.node.mjs').then(
298
298
  (mod) => mod.default
299
299
  );
300
300
  const { Esmx } = await import('@esmx/core');