@ecopages/core 0.2.0-beta.24 → 0.2.0-beta.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/core",
3
- "version": "0.2.0-beta.24",
3
+ "version": "0.2.0-beta.25",
4
4
  "description": "Core package for Ecopages",
5
5
  "keywords": [
6
6
  "ecopages",
@@ -17,7 +17,7 @@
17
17
  "directory": "packages/core"
18
18
  },
19
19
  "dependencies": {
20
- "@ecopages/file-system": "0.2.0-beta.24",
20
+ "@ecopages/file-system": "0.2.0-beta.25",
21
21
  "@ecopages/logger": "^0.2.3",
22
22
  "@ecopages/scripts-injector": "^0.1.5",
23
23
  "@oxc-project/runtime": "0.134.0",
@@ -26,6 +26,7 @@
26
26
  "esbuild": "^0.28.0",
27
27
  "ghtml": "^4.0.2",
28
28
  "oxc-parser": "^0.124.0",
29
+ "oxc-resolver": "^11.24.2",
29
30
  "rolldown": "^1.1.0",
30
31
  "ws": "^8.20.1",
31
32
  "@standard-schema/spec": "^1.1.0",
@@ -219,6 +220,14 @@
219
220
  "types": "./src/plugins/foreign-jsx-override-plugin.d.ts",
220
221
  "default": "./src/plugins/foreign-jsx-override-plugin.js"
221
222
  },
223
+ "./plugins/alias-resolver-plugin": {
224
+ "types": "./src/plugins/alias-resolver-plugin.d.ts",
225
+ "default": "./src/plugins/alias-resolver-plugin.js"
226
+ },
227
+ "./plugins/tsconfig-import-resolver": {
228
+ "types": "./src/plugins/tsconfig-import-resolver.d.ts",
229
+ "default": "./src/plugins/tsconfig-import-resolver.js"
230
+ },
222
231
  "./plugins/jsx-import-source.utils": {
223
232
  "types": "./src/plugins/jsx-import-source.utils.d.ts",
224
233
  "default": "./src/plugins/jsx-import-source.utils.js"
@@ -432,6 +441,14 @@
432
441
  "types": "./src/plugins/foreign-jsx-override-plugin.d.ts",
433
442
  "default": "./src/plugins/foreign-jsx-override-plugin.js"
434
443
  },
444
+ "./plugins/alias-resolver-plugin.ts": {
445
+ "types": "./src/plugins/alias-resolver-plugin.d.ts",
446
+ "default": "./src/plugins/alias-resolver-plugin.js"
447
+ },
448
+ "./plugins/tsconfig-import-resolver.ts": {
449
+ "types": "./src/plugins/tsconfig-import-resolver.d.ts",
450
+ "default": "./src/plugins/tsconfig-import-resolver.js"
451
+ },
435
452
  "./plugins/jsx-import-source.utils.ts": {
436
453
  "types": "./src/plugins/jsx-import-source.utils.d.ts",
437
454
  "default": "./src/plugins/jsx-import-source.utils.js"
@@ -120,16 +120,16 @@ import {
120
120
  setupAppRuntimePlugins
121
121
  } from "./app-build-manifest-runtime.js";
122
122
  function getAppServerBuildPlugins(appConfig) {
123
- const srcDir = appConfig.absolutePaths?.srcDir;
124
- const aliasPlugin = srcDir ? [createAliasResolverPlugin(srcDir)] : [];
123
+ const projectDir = appConfig.absolutePaths?.projectDir;
124
+ const aliasPlugin = projectDir ? [createAliasResolverPlugin(projectDir)] : [];
125
125
  return [...aliasPlugin, ...getServerBuildPlugins(getAppBuildManifest(appConfig))];
126
126
  }
127
127
  function getAppBrowserBuildPlugins(appConfig) {
128
128
  const manifest = getAppBuildManifest(appConfig);
129
129
  const sourceTransformNames = new Set(getAppSourceTransforms(appConfig).map((transform) => transform.name));
130
130
  const browserPlugins = getBrowserBuildPlugins(manifest).filter((plugin) => !sourceTransformNames.has(plugin.name));
131
- const srcDir = appConfig.absolutePaths?.srcDir;
132
- const aliasPlugin = srcDir ? [createAliasResolverPlugin(srcDir)] : [];
131
+ const projectDir = appConfig.absolutePaths?.projectDir;
132
+ const aliasPlugin = projectDir ? [createAliasResolverPlugin(projectDir)] : [];
133
133
  return [...aliasPlugin, ...browserPlugins, ...getJsxOwnershipPlugins(appConfig)];
134
134
  }
135
135
  function build(options, executor = defaultRolldownBuildAdapter) {
@@ -1,6 +1,7 @@
1
1
  import { createRequire } from "node:module";
2
2
  import { readFileSync } from "node:fs";
3
3
  import path from "node:path";
4
+ import { isBarePackageImportSpecifier } from "../plugins/tsconfig-import-resolver.js";
4
5
  import { collectBrowserRuntimeImportRewriteMap, rewriteBrowserRuntimeImports } from "./browser-runtime-plugin.js";
5
6
  import { createServerSideCssShimPlugin } from "./server-side-css-shim-plugin.js";
6
7
  import { createRolldownPluginBridge } from "./rolldown-plugin-bridge.js";
@@ -48,8 +49,8 @@ function transpileProfileToOptions(profile) {
48
49
  };
49
50
  }
50
51
  }
51
- function isPackageImport(id) {
52
- return !id.startsWith(".") && !path.isAbsolute(id) && !id.startsWith("/") && !id.startsWith("node:") && !id.startsWith("@/") && !id.startsWith("~/") && !id.startsWith("#") && !id.includes(":");
52
+ function isPackageImport(id, contextRoot) {
53
+ return isBarePackageImportSpecifier(id, contextRoot);
53
54
  }
54
55
  function tryResolveModule(id, resolver) {
55
56
  try {
@@ -92,7 +93,7 @@ function createExternalMatcher(options, appRootRequireCache) {
92
93
  if (explicitExternals.has(id)) {
93
94
  return true;
94
95
  }
95
- if (!externalPackages || !isPackageImport(id)) {
96
+ if (!externalPackages || !isPackageImport(id, contextRoot)) {
96
97
  return false;
97
98
  }
98
99
  return !shouldBundlePackageImport(id, contextRoot, appRootRequireCache);
@@ -2,6 +2,7 @@ import { createRequire } from "node:module";
2
2
  import { readFileSync } from "node:fs";
3
3
  import path from "node:path";
4
4
  import { pathToFileURL } from "node:url";
5
+ import { isBarePackageImportSpecifier } from "../plugins/tsconfig-import-resolver.js";
5
6
  const corePackageRequire = createRequire(new URL("../../package.json", import.meta.url));
6
7
  const appDeclaredPackageCache = /* @__PURE__ */ new Map();
7
8
  const appWorkspacePackageCache = /* @__PURE__ */ new Map();
@@ -13,9 +14,6 @@ function tryResolveRuntimeImport(specifier, resolver) {
13
14
  return void 0;
14
15
  }
15
16
  }
16
- function isBareRuntimeImport(specifier) {
17
- return !specifier.startsWith(".") && !path.isAbsolute(specifier) && !specifier.startsWith("/") && !specifier.startsWith("node:") && !specifier.startsWith("@/") && !specifier.startsWith("~/") && !specifier.startsWith("#") && !specifier.includes(":");
18
- }
19
17
  function extractPackageNameFromFileUrl(specifier) {
20
18
  if (!specifier.startsWith("file://")) {
21
19
  return void 0;
@@ -108,7 +106,7 @@ function isDeclaredInResolutionChain(specifier, rootDir) {
108
106
  return isDeclaredAppPackageImport(specifier, rootDir);
109
107
  }
110
108
  function rewriteRuntimeImportSpecifier(specifier, quote, rootDir) {
111
- if (!isBareRuntimeImport(specifier)) {
109
+ if (!isBarePackageImportSpecifier(specifier, rootDir)) {
112
110
  return void 0;
113
111
  }
114
112
  if (isDeclaredInResolutionChain(specifier, rootDir)) {
@@ -72,7 +72,18 @@ export interface ComponentOptions<P, E = EcoPagesElement> {
72
72
  render: (props: P) => E | Promise<E>;
73
73
  }
74
74
  export type HtmlOptions<E = EcoPagesElement> = ComponentOptions<HtmlTemplateProps, E>;
75
- export type LayoutOptions<E = EcoPagesElement> = ComponentOptions<LayoutProps<E>, E>;
75
+ export type LayoutOptions<E = EcoPagesElement> = ComponentOptions<LayoutProps<E>, E> & {
76
+ /**
77
+ * Marks this layout as mounting shared client runtime state such as React context
78
+ * providers or query clients.
79
+ *
80
+ * @remarks
81
+ * When any layout in the app sets this flag, only flagged layouts participate in
82
+ * React auto-vendoring discovery. This keeps shell-only layouts out of provider
83
+ * scans while persisted SPA navigation stays on one shared vendor instance.
84
+ */
85
+ runtimeProvider?: boolean;
86
+ };
76
87
  /**
77
88
  * Base options shared by all page variants
78
89
  */
@@ -1,17 +1,14 @@
1
1
  /**
2
- * Per-plugin cache for `@/...` alias resolution.
2
+ * Per-plugin cache for tsconfig path alias resolution.
3
3
  *
4
4
  * @remarks
5
- * The `ecopages-alias-resolver` plugin resolves project aliases like
6
- * `@/components/Button` to concrete file paths under the app's `srcDir`.
7
- * Each resolution can trigger up to 22 `existsSync` calls and (when
8
- * the resolved path is a barrel) a `readFileSync` to detect
9
- * `export * from './...'` forwarding.
5
+ * The `ecopages-alias-resolver` plugin resolves project path aliases to
6
+ * concrete file paths using the app's tsconfig `paths`. Each resolution goes
7
+ * through oxc-resolver and may read barrel re-export targets.
10
8
  *
11
- * This cache memoizes the result keyed by `(srcDir, specifier)`. It is
9
+ * This cache memoizes the result keyed by `(projectRoot, specifier)`. It is
12
10
  * process-local and not currently invalidated by the file watcher —
13
- * `srcDir` contents are assumed to be stable for the lifetime of the
14
- * process.
11
+ * project contents are assumed to be stable for the lifetime of the process.
15
12
  */
16
13
  export declare class AliasResolverCache {
17
14
  private readonly entries;
@@ -1,6 +1,6 @@
1
1
  import type { EcoBuildPlugin } from '../build/build-types.js';
2
2
  import { AliasResolverCache } from './alias-resolver-cache.js';
3
- export declare function resolveAppSourceAliasPath(srcDir: string, specifier: string): string | undefined;
4
- export declare function createAliasResolverPlugin(srcDir: string, options?: {
3
+ export declare function createAliasResolverPlugin(projectRoot: string, options?: {
5
4
  cache?: AliasResolverCache;
6
5
  }): EcoBuildPlugin;
6
+ export { isBarePackageImportSpecifier, matchesTsconfigPathPrefix, loadTsconfigPathPrefixes, resolveProjectImportPath, resolveProjectModulePath, } from './tsconfig-import-resolver.js';
@@ -1,65 +1,52 @@
1
- import { existsSync, readFileSync } from "node:fs";
2
- import path from "node:path";
3
1
  import { AliasResolverCache } from "./alias-resolver-cache.js";
4
- const RESOLVABLE_EXTENSIONS = [".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs", ".mdx", ".css", ".scss", ".sass", ".less"];
5
- function findResolvablePath(candidate) {
6
- if (path.extname(candidate)) {
7
- if (existsSync(candidate)) {
8
- return candidate;
9
- }
10
- }
11
- for (const extension of RESOLVABLE_EXTENSIONS) {
12
- const fileCandidate = `${candidate}${extension}`;
13
- if (existsSync(fileCandidate)) {
14
- return fileCandidate;
15
- }
16
- }
17
- for (const extension of RESOLVABLE_EXTENSIONS) {
18
- const indexCandidate = path.join(candidate, `index${extension}`);
19
- if (existsSync(indexCandidate)) {
20
- return indexCandidate;
21
- }
22
- }
23
- return void 0;
24
- }
25
- function resolveAliasedBarrelTarget(resolvedPath) {
26
- if (!path.basename(resolvedPath).startsWith("index.")) {
27
- return resolvedPath;
28
- }
29
- const source = readFileSync(resolvedPath, "utf8").trim();
30
- const match = source.match(/^export\s+\*\s+from\s+['"]([^'"]+)['"]\s*;?$/);
31
- if (!match?.[1]?.startsWith(".")) {
32
- return resolvedPath;
33
- }
34
- const target = findResolvablePath(path.resolve(path.dirname(resolvedPath), match[1]));
35
- return target ?? resolvedPath;
2
+ import { loadTsconfigPathPrefixes, resolveProjectImportPath } from "./tsconfig-import-resolver.js";
3
+ function escapeRegExp(value) {
4
+ return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
36
5
  }
37
- function resolveAppSourceAliasPath(srcDir, specifier) {
38
- if (!specifier.startsWith("@/")) {
39
- return void 0;
6
+ function buildPathPrefixFilter(prefix) {
7
+ if (prefix.endsWith("/")) {
8
+ return new RegExp(`^${escapeRegExp(prefix)}`);
40
9
  }
41
- const candidate = path.join(srcDir, specifier.slice(2));
42
- const resolved = findResolvablePath(candidate);
43
- return resolved ? resolveAliasedBarrelTarget(resolved) : void 0;
10
+ return new RegExp(`^${escapeRegExp(prefix)}(?:/|$)`);
44
11
  }
45
- function createAliasResolverPlugin(srcDir, options) {
12
+ function createAliasResolverPlugin(projectRoot, options) {
46
13
  const cache = options?.cache ?? new AliasResolverCache();
14
+ const pathPrefixes = loadTsconfigPathPrefixes(projectRoot);
47
15
  return {
48
16
  name: "ecopages-alias-resolver",
49
17
  setup(build) {
50
- build.onResolve({ filter: /^@\// }, (args) => {
51
- const cached = cache.get(srcDir, args.path);
52
- if (cached.hit) {
53
- return cached.resolved ? { path: cached.resolved } : {};
54
- }
55
- const resolved = resolveAppSourceAliasPath(srcDir, args.path);
56
- cache.set(srcDir, args.path, resolved);
57
- return resolved ? { path: resolved } : {};
58
- });
18
+ if (pathPrefixes.length === 0) {
19
+ return;
20
+ }
21
+ for (const prefix of pathPrefixes) {
22
+ build.onResolve({ filter: buildPathPrefixFilter(prefix) }, (args) => {
23
+ if (!args.importer) {
24
+ return void 0;
25
+ }
26
+ const cached = cache.get(projectRoot, args.path);
27
+ if (cached.hit) {
28
+ return cached.resolved ? { path: cached.resolved } : void 0;
29
+ }
30
+ const resolved = resolveProjectImportPath(projectRoot, args.importer, args.path);
31
+ cache.set(projectRoot, args.path, resolved);
32
+ return resolved ? { path: resolved } : void 0;
33
+ });
34
+ }
59
35
  }
60
36
  };
61
37
  }
38
+ import {
39
+ isBarePackageImportSpecifier,
40
+ matchesTsconfigPathPrefix,
41
+ loadTsconfigPathPrefixes as loadTsconfigPathPrefixes2,
42
+ resolveProjectImportPath as resolveProjectImportPath2,
43
+ resolveProjectModulePath
44
+ } from "./tsconfig-import-resolver.js";
62
45
  export {
63
46
  createAliasResolverPlugin,
64
- resolveAppSourceAliasPath
47
+ isBarePackageImportSpecifier,
48
+ loadTsconfigPathPrefixes2 as loadTsconfigPathPrefixes,
49
+ matchesTsconfigPathPrefix,
50
+ resolveProjectImportPath2 as resolveProjectImportPath,
51
+ resolveProjectModulePath
65
52
  };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Loads `compilerOptions.paths` keys from tsconfig, following `extends` recursively.
3
+ */
4
+ export declare function loadTsconfigPathPrefixes(projectRoot: string): string[];
5
+ export declare function matchesTsconfigPathPrefix(specifier: string, prefixes: readonly string[]): boolean;
6
+ /**
7
+ * Returns true when `specifier` looks like a bare npm package import rather than
8
+ * a relative path, absolute path, node built-in, tsconfig alias, or `#` import map.
9
+ */
10
+ export declare function isBarePackageImportSpecifier(specifier: string, projectRoot?: string): boolean;
11
+ /**
12
+ * Resolves a relative or tsconfig path alias import (via oxc-resolver).
13
+ */
14
+ export declare function resolveProjectModulePath(projectRoot: string, fromFile: string, specifier: string): string | undefined;
15
+ /**
16
+ * Resolves a TS path alias import using the app's tsconfig `paths` (via oxc-resolver).
17
+ */
18
+ export declare function resolveProjectImportPath(projectRoot: string, fromFile: string, specifier: string): string | undefined;
@@ -0,0 +1,159 @@
1
+ import { existsSync, readFileSync, realpathSync } from "node:fs";
2
+ import path from "node:path";
3
+ import { ResolverFactory } from "oxc-resolver";
4
+ const RESOLVABLE_EXTENSIONS = [".ts", ".tsx", ".js", ".jsx", ".mjs", ".cjs", ".mdx"];
5
+ const resolverCache = /* @__PURE__ */ new Map();
6
+ const pathPrefixCache = /* @__PURE__ */ new Map();
7
+ function stripJsonComments(source) {
8
+ return source.replace(/\/\*[\s\S]*?\*\//g, "").replace(/^\s*\/\/.*$/gm, "");
9
+ }
10
+ function findTsconfigPath(projectRoot) {
11
+ const candidate = path.join(projectRoot, "tsconfig.json");
12
+ return existsSync(candidate) ? candidate : void 0;
13
+ }
14
+ function readJsonFile(filePath) {
15
+ const source = readFileSync(filePath, "utf8");
16
+ try {
17
+ return JSON.parse(source);
18
+ } catch {
19
+ return JSON.parse(stripJsonComments(source));
20
+ }
21
+ }
22
+ function loadTsconfigPathPrefixes(projectRoot) {
23
+ const cached = pathPrefixCache.get(projectRoot);
24
+ if (cached) {
25
+ return cached;
26
+ }
27
+ const tsconfigPath = findTsconfigPath(projectRoot);
28
+ if (!tsconfigPath) {
29
+ pathPrefixCache.set(projectRoot, []);
30
+ return [];
31
+ }
32
+ const prefixes = /* @__PURE__ */ new Set();
33
+ const visited = /* @__PURE__ */ new Set();
34
+ const collectFromConfig = (configPath) => {
35
+ const normalized = path.resolve(configPath);
36
+ if (visited.has(normalized)) {
37
+ return;
38
+ }
39
+ visited.add(normalized);
40
+ let config;
41
+ try {
42
+ config = readJsonFile(normalized);
43
+ } catch {
44
+ return;
45
+ }
46
+ if (typeof config.extends === "string") {
47
+ const parentPath = path.resolve(path.dirname(normalized), config.extends);
48
+ collectFromConfig(parentPath);
49
+ }
50
+ for (const key of Object.keys(config.compilerOptions?.paths ?? {})) {
51
+ if (key.endsWith("/*")) {
52
+ prefixes.add(key.slice(0, -1));
53
+ continue;
54
+ }
55
+ if (key.endsWith("*")) {
56
+ prefixes.add(key.slice(0, -1));
57
+ continue;
58
+ }
59
+ prefixes.add(key);
60
+ }
61
+ };
62
+ collectFromConfig(tsconfigPath);
63
+ const resolvedPrefixes = [...prefixes];
64
+ pathPrefixCache.set(projectRoot, resolvedPrefixes);
65
+ return resolvedPrefixes;
66
+ }
67
+ function matchesTsconfigPathPrefix(specifier, prefixes) {
68
+ return prefixes.some((prefix) => {
69
+ if (prefix.endsWith("/")) {
70
+ return specifier.startsWith(prefix);
71
+ }
72
+ return specifier === prefix || specifier.startsWith(`${prefix}/`);
73
+ });
74
+ }
75
+ function isBarePackageImportSpecifier(specifier, projectRoot) {
76
+ if (specifier.startsWith(".") || path.isAbsolute(specifier) || specifier.startsWith("/")) {
77
+ return false;
78
+ }
79
+ if (specifier.startsWith("node:") || specifier.startsWith("#") || specifier.includes(":")) {
80
+ return false;
81
+ }
82
+ if (projectRoot && matchesTsconfigPathPrefix(specifier, loadTsconfigPathPrefixes(projectRoot))) {
83
+ return false;
84
+ }
85
+ return true;
86
+ }
87
+ function getResolverFactory(projectRoot) {
88
+ const cached = resolverCache.get(projectRoot);
89
+ if (cached) {
90
+ return cached;
91
+ }
92
+ const tsconfigPath = findTsconfigPath(projectRoot);
93
+ if (!tsconfigPath) {
94
+ return void 0;
95
+ }
96
+ const resolver = new ResolverFactory({
97
+ tsconfig: {
98
+ configFile: tsconfigPath
99
+ },
100
+ extensions: [...RESOLVABLE_EXTENSIONS]
101
+ });
102
+ resolverCache.set(projectRoot, resolver);
103
+ return resolver;
104
+ }
105
+ function resolveAliasedBarrelTarget(resolvedPath) {
106
+ if (!path.basename(resolvedPath).startsWith("index.")) {
107
+ return resolvedPath;
108
+ }
109
+ const source = readFileSync(resolvedPath, "utf8").trim();
110
+ const match = source.match(/^export\s+\*\s+from\s+['"]([^'"]+)['"]\s*;?$/);
111
+ if (!match?.[1]?.startsWith(".")) {
112
+ return resolvedPath;
113
+ }
114
+ const targetDir = path.dirname(resolvedPath);
115
+ const targetBase = path.resolve(targetDir, match[1]);
116
+ for (const extension of RESOLVABLE_EXTENSIONS) {
117
+ const candidate = `${targetBase}${extension}`;
118
+ if (existsSync(candidate)) {
119
+ return candidate;
120
+ }
121
+ }
122
+ for (const extension of RESOLVABLE_EXTENSIONS) {
123
+ const candidate = path.join(targetBase, `index${extension}`);
124
+ if (existsSync(candidate)) {
125
+ return candidate;
126
+ }
127
+ }
128
+ return resolvedPath;
129
+ }
130
+ function resolveProjectModulePath(projectRoot, fromFile, specifier) {
131
+ const prefixes = loadTsconfigPathPrefixes(projectRoot);
132
+ const isRelative = specifier.startsWith(".");
133
+ const isPathAlias = matchesTsconfigPathPrefix(specifier, prefixes);
134
+ if (!isRelative && !isPathAlias) {
135
+ return void 0;
136
+ }
137
+ const resolver = getResolverFactory(projectRoot);
138
+ if (!resolver) {
139
+ return void 0;
140
+ }
141
+ const result = resolver.sync(path.dirname(fromFile), specifier);
142
+ if (!result.path) {
143
+ return void 0;
144
+ }
145
+ return resolveAliasedBarrelTarget(realpathSync(result.path));
146
+ }
147
+ function resolveProjectImportPath(projectRoot, fromFile, specifier) {
148
+ if (!matchesTsconfigPathPrefix(specifier, loadTsconfigPathPrefixes(projectRoot))) {
149
+ return void 0;
150
+ }
151
+ return resolveProjectModulePath(projectRoot, fromFile, specifier);
152
+ }
153
+ export {
154
+ isBarePackageImportSpecifier,
155
+ loadTsconfigPathPrefixes,
156
+ matchesTsconfigPathPrefix,
157
+ resolveProjectImportPath,
158
+ resolveProjectModulePath
159
+ };
@@ -0,0 +1,52 @@
1
+ import type { createRequire } from 'node:module';
2
+ export type BrowserRuntimeDefaultExportPolicy = 'emit-default' | 'skip-default';
3
+ type RequireFromRoot = ReturnType<typeof createRequire>;
4
+ /**
5
+ * Resolves a package specifier to its ESM entry file path from the app root.
6
+ */
7
+ export declare function resolvePackageEsmEntryPath(specifier: string, rootDir: string): string | undefined;
8
+ /**
9
+ * Builds a relative import path from a generated runtime entry file to a resolved module path.
10
+ */
11
+ export declare function toRelativeEntryImport(entryDir: string, resolvedPath: string): string;
12
+ /**
13
+ * Resolves a browser runtime entry import to an ESM file path when possible.
14
+ *
15
+ * @remarks
16
+ * `createRequire().resolve()` follows the `require` export condition and can
17
+ * land on `.cjs` entrypoints. Browser vendor bundles then emit runtime
18
+ * `require()` calls for React externals. Prefer Node's ESM resolver first, then
19
+ * a `.cjs` → `.js` sibling fallback.
20
+ */
21
+ export declare function resolveBrowserRuntimeEntryImport(options: {
22
+ specifier: string;
23
+ requireFromRoot: RequireFromRoot;
24
+ entryDir: string;
25
+ rootDir: string;
26
+ }): string;
27
+ /**
28
+ * Decides whether a generated runtime entry should re-export a default binding.
29
+ *
30
+ * @remarks
31
+ * ESM-only packages such as `@tanstack/react-query` expose named exports only.
32
+ * Legacy CJS packages such as `react` assign `module.exports` directly and have
33
+ * no `.default` under `require()`, but still need a default re-export for
34
+ * `import React from 'react'` in browser bundles.
35
+ *
36
+ * ESM source inspection is a best-effort fast path; when it is inconclusive the
37
+ * policy falls back to the shape returned by `require()`.
38
+ */
39
+ export declare function inferBrowserRuntimeDefaultExportPolicy(options: {
40
+ specifier: string;
41
+ requireFromRoot: RequireFromRoot;
42
+ rootDir: string;
43
+ }): BrowserRuntimeDefaultExportPolicy;
44
+ /**
45
+ * Reads the named runtime exports that should be re-exported from a generated runtime entry module.
46
+ *
47
+ * @remarks
48
+ * Default exports are handled separately because generated runtime entry files need to emit a
49
+ * synthetic default binding only when the caller explicitly asks for it.
50
+ */
51
+ export declare function listBrowserRuntimeModuleExportNames(specifier: string, requireFromRoot: RequireFromRoot): string[];
52
+ export {};
@@ -0,0 +1,78 @@
1
+ import fs from "node:fs";
2
+ import path from "node:path";
3
+ import { pathToFileURL, fileURLToPath } from "node:url";
4
+ import { isBarePackageImportSpecifier } from "../../../plugins/tsconfig-import-resolver.js";
5
+ function resolvePackageEsmEntryPath(specifier, rootDir) {
6
+ try {
7
+ return fileURLToPath(import.meta.resolve(specifier, pathToFileURL(path.join(rootDir, "package.json")).href));
8
+ } catch {
9
+ return void 0;
10
+ }
11
+ }
12
+ function toRelativeEntryImport(entryDir, resolvedPath) {
13
+ let relativePath = path.relative(entryDir, resolvedPath).replace(/\\/g, "/");
14
+ if (!relativePath.startsWith(".")) {
15
+ relativePath = `./${relativePath}`;
16
+ }
17
+ return relativePath;
18
+ }
19
+ function resolveBrowserRuntimeEntryImport(options) {
20
+ const { specifier, requireFromRoot, entryDir, rootDir } = options;
21
+ if (specifier.startsWith("node:") || specifier.startsWith("file:")) {
22
+ return specifier;
23
+ }
24
+ if (specifier.startsWith(".")) {
25
+ const resolvedPath2 = requireFromRoot.resolve(specifier);
26
+ return toRelativeEntryImport(entryDir, resolvedPath2);
27
+ }
28
+ if (isBarePackageImportSpecifier(specifier, rootDir)) {
29
+ const esmResolvedPath = resolvePackageEsmEntryPath(specifier, rootDir);
30
+ if (esmResolvedPath) {
31
+ return toRelativeEntryImport(entryDir, esmResolvedPath);
32
+ }
33
+ }
34
+ const resolvedPath = requireFromRoot.resolve(specifier);
35
+ const esmSibling = resolvedPath.endsWith(".cjs") ? `${resolvedPath.slice(0, -4)}.js` : resolvedPath.endsWith(".cts") ? `${resolvedPath.slice(0, -4)}.ts` : void 0;
36
+ if (esmSibling && fs.existsSync(esmSibling)) {
37
+ return toRelativeEntryImport(entryDir, esmSibling);
38
+ }
39
+ return toRelativeEntryImport(entryDir, resolvedPath);
40
+ }
41
+ function inferBrowserRuntimeDefaultExportPolicy(options) {
42
+ const { specifier, requireFromRoot, rootDir } = options;
43
+ const esmPath = resolvePackageEsmEntryPath(specifier, rootDir);
44
+ if (esmPath && fs.existsSync(esmPath)) {
45
+ const source = fs.readFileSync(esmPath, "utf8");
46
+ if (/\bexport\s+default\b/.test(source)) {
47
+ return "emit-default";
48
+ }
49
+ if (/\bexport\s+(?:[\w*{]|const|let|var|function|class)/.test(source)) {
50
+ return "skip-default";
51
+ }
52
+ }
53
+ try {
54
+ const moduleExports = requireFromRoot(specifier);
55
+ if (moduleExports.default !== void 0) {
56
+ return "emit-default";
57
+ }
58
+ return moduleExports.__esModule === true ? "skip-default" : "emit-default";
59
+ } catch {
60
+ return "skip-default";
61
+ }
62
+ }
63
+ function listBrowserRuntimeModuleExportNames(specifier, requireFromRoot) {
64
+ let moduleExports;
65
+ try {
66
+ moduleExports = requireFromRoot(specifier);
67
+ } catch {
68
+ return [];
69
+ }
70
+ return Object.keys(moduleExports).filter((name) => name !== "__esModule" && name !== "default").filter((name) => /^[$A-Z_a-z][$\w]*$/.test(name)).sort();
71
+ }
72
+ export {
73
+ inferBrowserRuntimeDefaultExportPolicy,
74
+ listBrowserRuntimeModuleExportNames,
75
+ resolveBrowserRuntimeEntryImport,
76
+ resolvePackageEsmEntryPath,
77
+ toRelativeEntryImport
78
+ };
@@ -2,6 +2,11 @@ import fs from "node:fs";
2
2
  import path from "node:path";
3
3
  import { createRequire } from "node:module";
4
4
  import { DEFAULT_ECOPAGES_WORK_DIR } from "../../../config/constants.js";
5
+ import {
6
+ inferBrowserRuntimeDefaultExportPolicy,
7
+ listBrowserRuntimeModuleExportNames,
8
+ resolveBrowserRuntimeEntryImport
9
+ } from "./browser-runtime-entry-resolution.js";
5
10
  function createBrowserRuntimeEntryModule(options) {
6
11
  if (options.modules.some((module) => !module.specifier.startsWith("node:")) && !options.rootDir) {
7
12
  throw new Error("createBrowserRuntimeEntryModule requires rootDir to resolve package specifiers");
@@ -20,12 +25,17 @@ function createBrowserRuntimeEntryModule(options) {
20
25
  const filePath = path.join(artifactsDir, options.fileName);
21
26
  const entryDir = path.dirname(filePath);
22
27
  for (const module of options.modules) {
23
- const importSpecifier = resolveEntryImportSpecifier(module.specifier, requireFromRoot, entryDir);
24
- if (module.defaultExport) {
28
+ const importSpecifier = resolveBrowserRuntimeEntryImport({
29
+ specifier: module.specifier,
30
+ requireFromRoot,
31
+ entryDir,
32
+ rootDir
33
+ });
34
+ if (module.defaultExport && inferBrowserRuntimeDefaultExportPolicy({ specifier: module.specifier, requireFromRoot, rootDir }) === "emit-default") {
25
35
  statements.push(`import __ecopages_default_export__ from '${importSpecifier}';`);
26
36
  statements.push("export default __ecopages_default_export__;");
27
37
  }
28
- const exportNames = getModuleExportNames(module.specifier, requireFromRoot).filter(
38
+ const exportNames = listBrowserRuntimeModuleExportNames(module.specifier, requireFromRoot).filter(
29
39
  (name) => !seenExports.has(name)
30
40
  );
31
41
  if (exportNames.length > 0) {
@@ -41,21 +51,6 @@ function createBrowserRuntimeEntryModule(options) {
41
51
  }
42
52
  return filePath;
43
53
  }
44
- function resolveEntryImportSpecifier(specifier, requireFromRoot, entryDir) {
45
- if (specifier.startsWith("node:") || specifier.startsWith("file:")) {
46
- return specifier;
47
- }
48
- const resolvedPath = requireFromRoot.resolve(specifier);
49
- let relativePath = path.relative(entryDir, resolvedPath).replace(/\\/g, "/");
50
- if (!relativePath.startsWith(".")) {
51
- relativePath = `./${relativePath}`;
52
- }
53
- return relativePath;
54
- }
55
- function getModuleExportNames(specifier, requireFromRoot) {
56
- const moduleExports = requireFromRoot(specifier);
57
- return Object.keys(moduleExports).filter((name) => name !== "__esModule" && name !== "default").filter((name) => /^[$A-Z_a-z][$\w]*$/.test(name)).sort();
58
- }
59
54
  export {
60
55
  createBrowserRuntimeEntryModule
61
56
  };
@@ -5,3 +5,4 @@ export * from './asset-processing.service.js';
5
5
  export * from './assets.types.js';
6
6
  export * from './browser-runtime-asset.factory.js';
7
7
  export * from './browser-runtime-entry.factory.js';
8
+ export * from './browser-runtime-entry-resolution.js';
@@ -5,3 +5,4 @@ export * from "./asset-processing.service.js";
5
5
  export * from "./assets.types.js";
6
6
  export * from "./browser-runtime-asset.factory.js";
7
7
  export * from "./browser-runtime-entry.factory.js";
8
+ export * from "./browser-runtime-entry-resolution.js";