@esmx/core 3.0.0-rc.33 → 3.0.0-rc.34

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 CHANGED
@@ -33,7 +33,7 @@
33
33
  - **Dependency Management** - Centralized dependency management with content-hash-based strong caching strategy
34
34
  - **Application Isolation** - ESM native module isolation ensuring runtime stability
35
35
  - **SSR Support** - Flexible server-side rendering strategy supporting any frontend framework
36
- - **Developer Experience** - Complete TypeScript support with native module linking capabilities
36
+ - **Developer Experience** - Complete TypeScript support with native Module Linking capabilities
37
37
 
38
38
  ## 📦 Installation
39
39
 
@@ -5,7 +5,7 @@ import type { BuildSsrTarget } from './core';
5
5
  */
6
6
  export interface ModuleConfig {
7
7
  /**
8
- * Module link configuration.
8
+ * Module linking configuration.
9
9
  * Key is remote module name, value is module build output directory path.
10
10
  *
11
11
  * @example
package/package.json CHANGED
@@ -59,7 +59,7 @@
59
59
  "build": "unbuild"
60
60
  },
61
61
  "dependencies": {
62
- "@esmx/import": "3.0.0-rc.33",
62
+ "@esmx/import": "3.0.0-rc.34",
63
63
  "@types/serialize-javascript": "^5.0.4",
64
64
  "es-module-lexer": "^1.7.0",
65
65
  "find": "^0.3.0",
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "devDependencies": {
70
70
  "@biomejs/biome": "1.9.4",
71
- "@esmx/lint": "3.0.0-rc.33",
71
+ "@esmx/lint": "3.0.0-rc.34",
72
72
  "@types/find": "^0.2.4",
73
73
  "@types/node": "^24.0.0",
74
74
  "@types/send": "^0.17.4",
@@ -79,7 +79,7 @@
79
79
  "unbuild": "3.5.0",
80
80
  "vitest": "3.2.4"
81
81
  },
82
- "version": "3.0.0-rc.33",
82
+ "version": "3.0.0-rc.34",
83
83
  "type": "module",
84
84
  "private": false,
85
85
  "exports": {
@@ -102,5 +102,5 @@
102
102
  "template",
103
103
  "public"
104
104
  ],
105
- "gitHead": "b38d6e27a1e1df3e4a11474e91e5838ddf26a3c4"
105
+ "gitHead": "bdd13d12f341475f24531882f22e36d68e9130f9"
106
106
  }
@@ -7,7 +7,7 @@ import type { BuildSsrTarget } from './core';
7
7
  */
8
8
  export interface ModuleConfig {
9
9
  /**
10
- * Module link configuration.
10
+ * Module linking configuration.
11
11
  * Key is remote module name, value is module build output directory path.
12
12
  *
13
13
  * @example
@@ -207,7 +207,7 @@ const PREFIX = {
207
207
  } as const;
208
208
 
209
209
  /**
210
- * Process and resolve module links configuration.
210
+ * Process and resolve module linking configuration.
211
211
  * Creates absolute paths for client/server directories and manifest files.
212
212
  * Automatically includes the current module as a self-link.
213
213
  *