@mastra/deployer 1.58.0-alpha.1 → 1.58.0-alpha.13
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/CHANGELOG.md +158 -0
- package/dist/_types/@mastra_hono/dist/index.d.ts +24 -1
- package/dist/{analyze-D100622N.cjs → analyze-BIrkd7zx.cjs} +2 -2
- package/dist/{analyze-D100622N.cjs.map → analyze-BIrkd7zx.cjs.map} +1 -1
- package/dist/{analyze-7xxwhB5F.js → analyze-CNv6Qdaz.js} +2 -2
- package/dist/{analyze-7xxwhB5F.js.map → analyze-CNv6Qdaz.js.map} +1 -1
- package/dist/build/analyze.cjs +1 -1
- package/dist/build/analyze.js +1 -1
- package/dist/build/bundler.cjs +1 -1
- package/dist/build/bundler.d.ts +2 -1
- package/dist/build/bundler.d.ts.map +1 -1
- package/dist/build/bundler.js +1 -1
- package/dist/build/fs-routing/codegen.d.ts +5 -4
- package/dist/build/fs-routing/codegen.d.ts.map +1 -1
- package/dist/build/fs-routing/discover.d.ts +12 -5
- package/dist/build/fs-routing/discover.d.ts.map +1 -1
- package/dist/build/index.cjs +4 -4
- package/dist/build/index.js +4 -4
- package/dist/build/types.d.ts +11 -0
- package/dist/build/types.d.ts.map +1 -1
- package/dist/build/watcher.d.ts.map +1 -1
- package/dist/{build-33wIyA35.cjs → build-BERX35Pi.cjs} +30 -18
- package/dist/build-BERX35Pi.cjs.map +1 -0
- package/dist/{build-xd6t8qiR.js → build-kZfvpuh9.js} +30 -18
- package/dist/build-kZfvpuh9.js.map +1 -0
- package/dist/bundler/entries.d.ts +12 -0
- package/dist/bundler/entries.d.ts.map +1 -0
- package/dist/bundler/index.cjs +6 -506
- package/dist/bundler/index.d.ts +1 -1
- package/dist/bundler/index.d.ts.map +1 -1
- package/dist/bundler/index.js +1 -497
- package/dist/bundler-Ct1ToG6x.js +565 -0
- package/dist/bundler-Ct1ToG6x.js.map +1 -0
- package/dist/{bundler-u9WOUtpl.cjs → bundler-DCGtF4jP.cjs} +7 -3
- package/dist/{bundler-u9WOUtpl.cjs.map → bundler-DCGtF4jP.cjs.map} +1 -1
- package/dist/bundler-DLXwkS7b.cjs +598 -0
- package/dist/bundler-DLXwkS7b.cjs.map +1 -0
- package/dist/{bundler-U9F2---r.js → bundler-gff4vn1T.js} +8 -4
- package/dist/bundler-gff4vn1T.js.map +1 -0
- package/dist/{bundlerOptions-CYRir4LE.cjs → bundlerOptions-CjjAPZYp.cjs} +2 -2
- package/dist/{bundlerOptions-CYRir4LE.cjs.map → bundlerOptions-CjjAPZYp.cjs.map} +1 -1
- package/dist/{bundlerOptions-9DigsVhY.js → bundlerOptions-NMtZPD7p.js} +2 -2
- package/dist/{bundlerOptions-9DigsVhY.js.map → bundlerOptions-NMtZPD7p.js.map} +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/server/index.cjs +86 -7
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +87 -8
- package/dist/server/index.js.map +1 -1
- package/package.json +8 -8
- package/dist/build-33wIyA35.cjs.map +0 -1
- package/dist/build-xd6t8qiR.js.map +0 -1
- package/dist/bundler/index.cjs.map +0 -1
- package/dist/bundler/index.js.map +0 -1
- package/dist/bundler-U9F2---r.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundler-Ct1ToG6x.js","names":["createBundlerUtil"],"sources":["../src/bundler/entries.ts","../src/bundler/index.ts"],"sourcesContent":["import { statSync } from 'node:fs';\nimport { dirname, isAbsolute, resolve } from 'node:path';\nimport { ErrorCategory, ErrorDomain, MastraError } from '@mastra/core/error';\nimport { slash } from '../build/utils';\n\n/** Reserved by the server bundle (`index.mjs`). */\nconst SERVER_ENTRY_NAME = 'index';\n/**\n * Reserved by the tool aggregator, which `_bundle` writes to `tools.mjs` with `writeFile`\n * *after* rollup finishes. Rollup deduplicates colliding chunk names, but that write\n * happens outside its control, so an entry named `tools` is silently overwritten.\n */\nconst TOOLS_ENTRY_NAME = 'tools';\n/** Reserved by tool bundles (`tools/<uuid>.mjs`), which the aggregator collects by prefix. */\nconst TOOLS_ENTRY_PREFIX = 'tools/';\n\nfunction invalidEntries(text: string): MastraError {\n return new MastraError({\n id: 'DEPLOYER_BUNDLER_INVALID_ENTRIES',\n text,\n domain: ErrorDomain.DEPLOYER,\n category: ErrorCategory.USER,\n });\n}\n\n/**\n * Resolves the user's `bundler.entries` config into the absolute source paths the\n * bundler emits beside the server bundle.\n *\n * Names become output filenames (`<name>.mjs` via rollup's `entryFileNames`), so they\n * are rejected when they would collide with the server or tool bundles, or when they\n * would escape the output directory. Paths resolve relative to the Mastra directory —\n * the directory holding the entry file — so they read the same way as the imports\n * already in that file.\n */\nexport function resolveExtraEntries(\n entries: Record<string, string> | undefined,\n mastraEntryFile: string,\n): Record<string, string> {\n if (!entries) {\n return {};\n }\n\n const mastraDir = dirname(mastraEntryFile);\n const resolved = new Map<string, string>();\n\n for (const [name, entryPath] of Object.entries(entries)) {\n if (!name || name !== name.trim()) {\n throw invalidEntries(`bundler.entries has an empty or untrimmed entry name: ${JSON.stringify(name)}`);\n }\n\n // Normalize before every reserved-name check. A backslash form like `tools\\worker`\n // would otherwise pass validation and then be normalized into `tools/worker`, which\n // the tool aggregator absorbs by prefix.\n const normalizedName = slash(name);\n\n if (normalizedName === SERVER_ENTRY_NAME) {\n throw invalidEntries(\n `bundler.entries cannot use the name \"${SERVER_ENTRY_NAME}\" — it is reserved for the Mastra server bundle.`,\n );\n }\n\n if (normalizedName === TOOLS_ENTRY_NAME || normalizedName.startsWith(TOOLS_ENTRY_PREFIX)) {\n throw invalidEntries(\n `bundler.entries cannot use the name \"${name}\" — \"${TOOLS_ENTRY_NAME}\" and names starting with \"${TOOLS_ENTRY_PREFIX}\" are reserved for tool bundles.`,\n );\n }\n\n if (isAbsolute(name) || normalizedName.startsWith('/') || normalizedName.split('/').includes('..')) {\n throw invalidEntries(\n `bundler.entries name \"${name}\" must be a relative name without \"..\" segments — it becomes a file inside the build output.`,\n );\n }\n\n // Two names that differ only by separator collapse to one output file. Assigning both\n // would silently drop the first source, and dependency analysis would never see it.\n if (resolved.has(normalizedName)) {\n throw invalidEntries(\n `bundler.entries has two entries that resolve to the output name \"${normalizedName}\" (the second is \"${name}\"). Entry names must be unique once path separators are normalized.`,\n );\n }\n\n if (!entryPath) {\n throw invalidEntries(`bundler.entries entry \"${name}\" has an empty path.`);\n }\n\n const absolutePath = isAbsolute(entryPath) ? entryPath : resolve(mastraDir, entryPath);\n let entryStats;\n try {\n entryStats = statSync(absolutePath);\n } catch (error) {\n if ((error as NodeJS.ErrnoException).code === 'ENOENT' || (error as NodeJS.ErrnoException).code === 'ENOTDIR') {\n throw invalidEntries(\n `bundler.entries entry \"${name}\" points at \"${entryPath}\", which does not exist (resolved to ${absolutePath}). Paths are resolved relative to your Mastra directory (${mastraDir}).`,\n );\n }\n throw error;\n }\n\n // Caught here so a directory surfaces as a config error rather than as an opaque\n // rollup bundle-stage failure once it reaches the input map.\n if (!entryStats.isFile()) {\n throw invalidEntries(\n `bundler.entries entry \"${name}\" points at \"${entryPath}\", which is not a file (resolved to ${absolutePath}). Point it at the source file to bundle.`,\n );\n }\n\n resolved.set(normalizedName, slash(absolutePath));\n }\n\n return Object.fromEntries(resolved);\n}\n","import { execSync } from 'node:child_process';\nimport { existsSync } from 'node:fs';\nimport { readFile, rm, stat, writeFile } from 'node:fs/promises';\nimport { dirname, join, posix } from 'node:path';\nimport { MastraBundler } from '@mastra/core/bundler';\nimport { MastraError, ErrorDomain, ErrorCategory } from '@mastra/core/error';\nimport type { Config } from '@mastra/core/mastra';\nimport virtual from '@rollup/plugin-virtual';\nimport * as pkg from 'empathic/package';\nimport fsExtra, { copy, ensureDir, emptyDir, readJSON } from 'fs-extra/esm';\nimport type { InputOptions, OutputOptions } from 'rollup';\nimport { glob } from 'tinyglobby';\nimport { analyzeBundle } from '../build/analyze';\nimport { createBundler as createBundlerUtil, getInputOptions } from '../build/bundler';\nimport { getBundlerOptions } from '../build/bundlerOptions';\nimport type { BundlerOptions, ExternalDependencyInfo } from '../build/types';\nimport type { BundlerPlatform } from '../build/utils';\nimport { getPackageName, isBareModuleSpecifier, slash } from '../build/utils';\nimport { DepsService } from '../services/deps';\nimport { FileService } from '../services/fs';\nimport { resolveExtraEntries } from './entries';\nimport {\n collectTransitiveWorkspaceDependencies,\n getWorkspaceInformation,\n packWorkspaceDependencies,\n} from './workspaceDependencies';\n\nexport type { BundlerOptions, ExternalDependencyInfo } from '../build/types';\nexport type { BundlerPlatform } from '../build/utils';\n\nexport const IS_DEFAULT = Symbol('IS_DEFAULT');\n\nconst NPM_ALIAS_PREFIX = 'npm:';\n/** Characters a registry range or dist tag can contain. Protocols need `:`, git shorthand needs `/` or `#`. */\nconst REGISTRY_SPEC_PATTERN = /^[A-Za-z0-9.+_^~><=*|!\\s-]+$/;\nconst PACKAGE_NAME_PATTERN = /^(?:@[A-Za-z0-9._-]+\\/)?[A-Za-z0-9._-]+$/;\nconst TARBALL_SUFFIX_PATTERN = /\\.(?:tgz|tar\\.gz|tar)$/i;\n/** npm reads a value starting like this as a path, whatever follows. A bare `~` is a semver range. */\nconst FILE_SPEC_PREFIX_PATTERN = /^(?:\\.|~[/\\\\]|[/\\\\]|[A-Za-z]:[/\\\\])/;\n/** A range admitting any published version: `*`, `x`, `>=0`, and any union containing one. */\nconst UNBOUNDED_RANGE_PATTERN = /(?:^|\\|\\||\\s)\\s*(?:[*xX]|>=?\\s*0(?:\\.0)*(?:\\.0)*)\\s*(?:$|\\|\\|)/;\n\n/**\n * Constraints declared by the source app, plus the packages some resolution field pins.\n *\n * Only `dependencies` values are read. Override fields contribute names, never values: which of\n * `overrides`, `resolutions`, `pnpm.overrides` or `pnpm-workspace.yaml` a given install honoured\n * depends on the package manager and its version, so reproducing that precedence would mean\n * emulating three package managers. A name appearing in any of them is enough to know the resolved\n * version was chosen deliberately, which is all this needs.\n */\nexport type SourceDependencyConstraints = {\n dependencies: Record<string, string>;\n pinnedByResolutionField: Set<string>;\n};\n\nconst toStringRecord = (value: unknown): Record<string, string> => {\n if (!value || typeof value !== 'object' || Array.isArray(value)) {\n return {};\n }\n\n return Object.fromEntries(\n Object.entries(value).filter((entry): entry is [string, string] => typeof entry[1] === 'string'),\n );\n};\n\n/**\n * True when a specifier is something the isolated install in `.mastra/output` can resolve from the\n * registry: a semver range, a dist tag, a wildcard, or an npm alias whose target is a registry\n * package and range.\n *\n * This is an allowlist rather than a denylist of known protocols, so an unfamiliar protocol is\n * rejected without this code having to know it exists. The output directory is not a workspace, has\n * no catalog definitions and has a different relative-path base, so `catalog:`, `workspace:`,\n * `file:`, `link:` and git specifiers are all either uninstallable there or point somewhere else.\n */\nexport const isRegistryVersionSpec = (spec: string): boolean => {\n if (FILE_SPEC_PREFIX_PATTERN.test(spec) || TARBALL_SUFFIX_PATTERN.test(spec)) {\n return false;\n }\n\n if (spec.startsWith(NPM_ALIAS_PREFIX)) {\n const alias = spec.slice(NPM_ALIAS_PREFIX.length);\n // Skip index 0 so `npm:@scope/pkg` reads as an alias with no range rather than an empty name.\n const rangeSeparator = alias.lastIndexOf('@');\n const name = rangeSeparator > 0 ? alias.slice(0, rangeSeparator) : alias;\n const range = rangeSeparator > 0 ? alias.slice(rangeSeparator + 1) : '*';\n\n return PACKAGE_NAME_PATTERN.test(name) && isRegistryVersionSpec(range);\n }\n\n return REGISTRY_SPEC_PATTERN.test(spec);\n};\n\n/**\n * True when a specifier names a version the output install can be held to.\n *\n * A range admitting anything (`*`, `latest`, `>=0`, an alias with no range) is looser than the\n * version already resolved, so writing it would let a later install pull something the bundle was\n * never analyzed against.\n */\nconst isBoundedVersionSpec = (spec: string): boolean => {\n const range = spec.startsWith(NPM_ALIAS_PREFIX)\n ? (() => {\n const alias = spec.slice(NPM_ALIAS_PREFIX.length);\n const rangeSeparator = alias.lastIndexOf('@');\n return rangeSeparator > 0 ? alias.slice(rangeSeparator + 1) : '';\n })()\n : spec;\n\n return /\\d/.test(range) && !UNBOUNDED_RANGE_PATTERN.test(range);\n};\n\nconst readManifest = async (manifestPath: string | undefined): Promise<Record<string, unknown> | undefined> => {\n if (!manifestPath) {\n return undefined;\n }\n\n try {\n const manifest = await readJSON(manifestPath);\n return manifest && typeof manifest === 'object' ? manifest : undefined;\n } catch {\n // A manifest that cannot be read tells us nothing about intent.\n return undefined;\n }\n};\n\n/** Collect the package names a manifest's resolution fields pin, ignoring their values. */\nconst collectManifestPinnedNames = (manifest: Record<string, unknown> | undefined, pinned: Set<string>) => {\n const pnpmSection = manifest?.pnpm;\n const records = [\n manifest?.overrides,\n manifest?.resolutions,\n pnpmSection && typeof pnpmSection === 'object' ? (pnpmSection as { overrides?: unknown }).overrides : undefined,\n ];\n\n for (const record of records) {\n if (record && typeof record === 'object' && !Array.isArray(record)) {\n for (const key of Object.keys(record)) {\n pinned.add(key);\n }\n }\n }\n};\n\n/**\n * Collect the names under a top-level `overrides:` block in `pnpm-workspace.yaml`.\n *\n * pnpm moved overrides out of `package.json` into this file, so a workspace on a current pnpm keeps\n * them only here. Reading names off the indented block avoids a YAML dependency, the same tradeoff\n * `copyPnpmWorkspaceSettings` already makes for the top-level keys it copies.\n */\nconst collectPnpmWorkspacePinnedNames = (source: string, pinned: Set<string>) => {\n const lines = source.split(/\\r?\\n/);\n let insideOverrides = false;\n\n for (const line of lines) {\n if (/^\\S/.test(line)) {\n insideOverrides = /^overrides:\\s*$/.test(line);\n continue;\n }\n\n if (!insideOverrides) {\n continue;\n }\n\n const key = /^\\s+(?:'([^']+)'|\"([^\"]+)\"|([^'\"\\s:][^:]*?))\\s*:/.exec(line);\n if (key) {\n pinned.add((key[1] ?? key[2] ?? key[3] ?? '').trim());\n }\n }\n};\n\n/**\n * Read the constraints the source app declared.\n *\n * `dependencies` come from the manifest at `projectRoot`, the package the build was invoked for and\n * whose directory receives the output, falling back to the manifest above the entry file. Anchoring\n * on `projectRoot` rather than the entry file keeps the answer deterministic when the entry handed\n * to the bundler is a generated wrapper rather than the app's own source file.\n *\n * Resolution-field names are collected from both that manifest and the workspace root, including the\n * root `pnpm-workspace.yaml`, because a name pinned anywhere means the resolved version may have been\n * chosen deliberately rather than hoisted by accident.\n */\nexport const getSourceDependencyConstraints = async ({\n projectRoot,\n mastraEntryFile,\n workspaceRoot,\n}: {\n projectRoot: string;\n mastraEntryFile: string;\n workspaceRoot?: string;\n}): Promise<SourceDependencyConstraints> => {\n const manifestPaths = [pkg.up({ cwd: projectRoot }), pkg.up({ cwd: dirname(mastraEntryFile) })].filter(\n (entry, index, entries): entry is string => !!entry && entries.indexOf(entry) === index,\n );\n\n if (workspaceRoot) {\n manifestPaths.push(join(workspaceRoot, 'package.json'));\n }\n\n const pinnedByResolutionField = new Set<string>();\n let dependencies: Record<string, string> | undefined;\n\n for (const manifestPath of manifestPaths) {\n const manifest = await readManifest(manifestPath);\n if (!manifest) {\n continue;\n }\n\n // Nearest manifest wins, and an empty `dependencies` record is still that package's answer.\n dependencies ??= toStringRecord(manifest.dependencies);\n collectManifestPinnedNames(manifest, pinnedByResolutionField);\n }\n\n if (workspaceRoot) {\n try {\n collectPnpmWorkspacePinnedNames(\n await readFile(join(workspaceRoot, 'pnpm-workspace.yaml'), 'utf-8'),\n pinnedByResolutionField,\n );\n } catch {\n // No pnpm workspace config, or unreadable: nothing to learn from it.\n }\n }\n\n return { dependencies: dependencies ?? {}, pinnedByResolutionField };\n};\n\nconst findDeclaredConstraint = (\n constraints: SourceDependencyConstraints,\n dependencyName: string,\n): string | undefined => {\n const names = [dependencyName, getPackageName(dependencyName)].filter(\n (name, index, all): name is string => !!name && all.indexOf(name) === index,\n );\n\n for (const name of names) {\n // A pinned package's resolved version is the deliberate answer, so leave it as `main` wrote it.\n if (constraints.pinnedByResolutionField.has(name)) {\n return undefined;\n }\n }\n\n for (const name of names) {\n const declared = (constraints.dependencies[name] ?? '').trim();\n if (declared && isBoundedVersionSpec(declared) && isRegistryVersionSpec(declared)) {\n return declared;\n }\n }\n\n return undefined;\n};\n\n/**\n * Prefer the constraint the app declared over the version resolved from `node_modules`.\n *\n * The resolved version is whatever the install happened to hoist, so an app declaring `zod: ^4.3.6`\n * next to a hoisted `zod@3.25.76` gets the hoisted version written into the output manifest and the\n * isolated install then locks it in.\n */\nexport const applySourceDependencyRange = (\n dependencyName: string,\n dependencyInfo: ExternalDependencyInfo,\n constraints: SourceDependencyConstraints,\n): ExternalDependencyInfo => {\n const declared = findDeclaredConstraint(constraints, dependencyName);\n if (!declared) {\n return dependencyInfo;\n }\n\n if (declared.startsWith(NPM_ALIAS_PREFIX)) {\n return { ...dependencyInfo, packageSpec: declared };\n }\n\n // `packageSpec` is set only when the resolved package's own name differs from the requested one, so\n // a bare range under this key describes a different package and the resolved alias is the answer.\n if (dependencyInfo.packageSpec) {\n return dependencyInfo;\n }\n\n return { ...dependencyInfo, version: declared };\n};\n\nexport abstract class Bundler extends MastraBundler {\n protected analyzeOutputDir = '.build';\n protected outputDir = 'output';\n protected platform: BundlerPlatform = 'node';\n\n constructor(name: string, component: 'BUNDLER' | 'DEPLOYER' = 'BUNDLER') {\n super({ name, component });\n }\n\n async prepare(outputDirectory: string): Promise<void> {\n // Clean up the output directory first\n await emptyDir(outputDirectory);\n\n await ensureDir(join(outputDirectory, this.analyzeOutputDir));\n await ensureDir(join(outputDirectory, this.outputDir));\n }\n\n async writePackageJson(\n outputDirectory: string,\n dependencies: Map<string, string | ExternalDependencyInfo>,\n resolutions?: Record<string, string>,\n ) {\n this.logger.debug(\"Writing project's package.json\");\n\n await ensureDir(outputDirectory);\n const pkgPath = join(outputDirectory, 'package.json');\n\n const dependenciesMap = new Map();\n for (const [key, value] of dependencies.entries()) {\n const dependencyValue = typeof value === 'string' ? value : (value.packageSpec ?? value.version ?? 'latest');\n if (key.startsWith('@')) {\n // Handle scoped packages (e.g. @org/package)\n const pkgChunks = key.split('/');\n dependenciesMap.set(`${pkgChunks[0]}/${pkgChunks[1]}`, dependencyValue);\n } else {\n // For non-scoped packages, take only the first part before any slash\n const pkgName = key.split('/')[0] || key;\n dependenciesMap.set(pkgName, dependencyValue);\n }\n }\n\n await writeFile(\n pkgPath,\n JSON.stringify(\n {\n name: 'server',\n version: '1.0.0',\n private: true,\n type: 'module',\n main: 'index.mjs',\n scripts: {\n start: 'node ./index.mjs',\n },\n dependencies: Object.fromEntries(dependenciesMap.entries()),\n ...(Object.keys(resolutions ?? {}).length > 0 && { resolutions }),\n },\n null,\n 2,\n ),\n );\n }\n\n protected createBundler(inputOptions: InputOptions, outputOptions: Partial<OutputOptions> & { dir: string }) {\n return createBundlerUtil(inputOptions, outputOptions);\n }\n\n protected async getUserBundlerOptions(\n mastraEntryFile: string,\n outputDirectory: string,\n ): Promise<NonNullable<Config['bundler']>> {\n const defaultBundlerOptions: Config['bundler'] = {\n externals: [],\n sourcemap: false,\n transpilePackages: [],\n [IS_DEFAULT]: true,\n } as const;\n\n try {\n const bundlerOptions = await getBundlerOptions(mastraEntryFile, outputDirectory);\n\n return bundlerOptions ?? defaultBundlerOptions;\n } catch (error) {\n this.logger.debug('Failed to get bundler options, sourcemap will be disabled', { error });\n }\n\n return defaultBundlerOptions;\n }\n\n protected async analyze(entry: string | string[], mastraFile: string, outputDirectory: string) {\n return await analyzeBundle(\n ([] as string[]).concat(entry),\n mastraFile,\n {\n outputDir: join(outputDirectory, this.analyzeOutputDir),\n projectRoot: outputDirectory,\n platform: this.platform,\n },\n this.logger,\n );\n }\n\n protected pnpmNodeLinker?: 'hoisted';\n\n protected async installDependencies(\n outputDirectory: string,\n rootDir = process.cwd(),\n pnpmOverrides?: Record<string, string>,\n ) {\n const deps = new DepsService(rootDir);\n deps.__setLogger(this.logger);\n\n await deps.install({\n dir: join(outputDirectory, this.outputDir),\n pnpmOverrides,\n pnpmNodeLinker: this.pnpmNodeLinker,\n });\n }\n\n /**\n * Generate a package-lock.json for the output directory so that deploy targets\n * can use `npm ci` instead of `npm install`, skipping version resolution entirely.\n * This is a lockfile-only operation — no packages are downloaded.\n *\n * Temporarily moves node_modules out of the way because pnpm's symlink-based\n * layout confuses npm's arborist, then restores it afterwards so that\n * `mastra start` (or wrangler) can still resolve dependencies at runtime.\n */\n private async generateNpmLockfile(outputDir: string): Promise<void> {\n const nodeModules = join(outputDir, 'node_modules');\n const nodeModulesTmp = join(outputDir, 'node_modules.__tmp');\n let movedNodeModules = false;\n try {\n // Move node_modules aside — pnpm's symlink layout confuses npm's arborist\n if (await fsExtra.pathExists(nodeModules)) {\n await fsExtra.move(nodeModules, nodeModulesTmp, { overwrite: true });\n movedNodeModules = true;\n }\n execSync('npm install --package-lock-only --force', {\n cwd: outputDir,\n stdio: 'pipe',\n timeout: 60_000,\n });\n } catch {\n this.logger.warn('Failed to generate package-lock.json — deploy will fall back to npm install');\n } finally {\n // Restore node_modules so runtime resolution works\n if (movedNodeModules) {\n await rm(nodeModules, { recursive: true, force: true });\n await fsExtra.move(nodeModulesTmp, nodeModules, { overwrite: true });\n }\n }\n }\n\n protected async copyPublic(mastraDir: string, outputDirectory: string) {\n const publicDir = join(mastraDir, 'public');\n\n try {\n await stat(publicDir);\n } catch {\n return;\n }\n\n await copy(publicDir, join(outputDirectory, this.outputDir));\n }\n\n protected async copyDOTNPMRC({\n rootDir = process.cwd(),\n outputDirectory,\n }: {\n rootDir?: string;\n outputDirectory: string;\n }) {\n const sourceDotNpmRcPath = join(rootDir, '.npmrc');\n const targetDotNpmRcPath = join(outputDirectory, this.outputDir, '.npmrc');\n\n try {\n await stat(sourceDotNpmRcPath);\n await copy(sourceDotNpmRcPath, targetDotNpmRcPath);\n } catch {\n return;\n }\n }\n\n /**\n * Writes the `mastra-project.json` deployment marker for Software Factory\n * projects after public assets have been copied. Verifies that the Factory\n * SPA (`factory/index.html`) exists in the output before emitting the marker.\n */\n protected async writeFactoryMarker(outputDirectory: string): Promise<void> {\n const outputDir = join(outputDirectory, this.outputDir);\n const factoryIndex = join(outputDir, 'factory', 'index.html');\n if (!existsSync(factoryIndex)) {\n throw new MastraError({\n id: 'DEPLOYER_BUNDLER_FACTORY_UI_MISSING',\n text: 'Software Factory project detected but factory/index.html was not found after copying the prebuilt Factory UI.',\n domain: ErrorDomain.DEPLOYER,\n category: ErrorCategory.SYSTEM,\n });\n }\n await writeFile(\n join(outputDir, 'mastra-project.json'),\n JSON.stringify({ schemaVersion: 1, projectType: 'factory', assets: { ui: 'factory' } }, null, 2),\n );\n this.logger.info('Wrote mastra-project.json for Software Factory project');\n }\n\n protected async getBundlerOptions(\n serverFile: string,\n mastraEntryFile: string,\n analyzedBundleInfo: Awaited<ReturnType<typeof analyzeBundle>>,\n toolsPaths: (string | string[])[],\n { enableSourcemap, enableMinify, enableEsmShim, externals, entries }: BundlerOptions,\n ) {\n const { workspaceRoot } = await getWorkspaceInformation({ mastraEntryFile });\n const closestPkgJson = pkg.up({ cwd: dirname(mastraEntryFile) });\n const projectRoot = closestPkgJson ? dirname(closestPkgJson) : process.cwd();\n\n const inputOptions: InputOptions = await getInputOptions(\n mastraEntryFile,\n analyzedBundleInfo,\n this.platform,\n {\n 'process.env.NODE_ENV': JSON.stringify('production'),\n },\n {\n sourcemap: enableSourcemap,\n minify: enableMinify,\n workspaceRoot,\n projectRoot,\n enableEsmShim,\n externalsPreset: externals === true,\n },\n );\n const isVirtual = serverFile.includes('\\n') || !existsSync(serverFile);\n const toolsInputOptions = await this.listToolsInputOptions(toolsPaths);\n\n // User-declared extra entries (`bundler.entries`) are emitted beside the server\n // bundle as their own `<name>.mjs`. They share this input map so they also share\n // the `#mastra` chunk and the analyzed dependency graph.\n const extraEntries = entries ?? {};\n\n if (isVirtual) {\n inputOptions.input = { index: '#entry', ...extraEntries, ...toolsInputOptions };\n\n if (Array.isArray(inputOptions.plugins)) {\n inputOptions.plugins.unshift(virtual({ '#entry': serverFile }));\n } else {\n inputOptions.plugins = [virtual({ '#entry': serverFile })];\n }\n } else {\n inputOptions.input = { index: serverFile, ...extraEntries, ...toolsInputOptions };\n }\n\n return inputOptions;\n }\n\n getAllToolPaths(mastraDir: string, toolsPaths: (string | string[])[] = []): (string | string[])[] {\n // Normalize Windows paths to forward slashes for consistent handling\n const normalizedMastraDir = slash(mastraDir);\n\n // Prepare default tools paths with glob patterns\n const defaultToolsPath = posix.join(normalizedMastraDir, 'tools/**/*.{js,ts}');\n const defaultToolsIgnorePaths = [\n `!${posix.join(normalizedMastraDir, 'tools/**/*.{test,spec}.{js,ts}')}`,\n `!${posix.join(normalizedMastraDir, 'tools/**/__tests__/**')}`,\n ];\n\n // Combine default path with ignore patterns\n const defaultPaths = [defaultToolsPath, ...defaultToolsIgnorePaths];\n\n // If no tools paths provided, use only the default paths\n if (toolsPaths.length === 0) {\n return [defaultPaths];\n }\n\n // If tools paths are provided, add the default paths to ensure standard tools are always included\n return [...toolsPaths, defaultPaths];\n }\n\n async listToolsInputOptions(toolsPaths: (string | string[])[]) {\n const inputs: Record<string, string> = {};\n\n for (const toolPath of toolsPaths) {\n const expandedPaths = await glob(toolPath, {\n absolute: true,\n expandDirectories: false,\n });\n\n for (const path of expandedPaths) {\n if (await fsExtra.pathExists(path)) {\n const fileService = new FileService();\n const entryFile = fileService.getFirstExistingFile([\n join(path, 'index.ts'),\n join(path, 'index.js'),\n path, // if path itself is a file\n ]);\n\n // if it doesn't exist or is a dir skip it. using a dir as a tool will crash the process\n if (!entryFile || (await stat(entryFile)).isDirectory()) {\n this.logger.warn('No entry file found, skipping', { path });\n continue;\n }\n\n const uniqueToolID = crypto.randomUUID();\n // Normalize Windows paths to forward slashes for consistent handling\n const normalizedEntryFile = entryFile.replaceAll('\\\\', '/');\n inputs[`tools/${uniqueToolID}`] = normalizedEntryFile;\n } else {\n this.logger.warn('Tool path does not exist, skipping', { path });\n }\n }\n }\n\n return inputs;\n }\n\n protected async _bundle(\n serverFile: string,\n mastraEntryFile: string,\n {\n projectRoot,\n outputDirectory,\n enableEsmShim = true,\n }: {\n projectRoot: string;\n outputDirectory: string;\n enableEsmShim?: boolean;\n },\n toolsPaths: (string | string[])[] = [],\n bundleLocation: string = join(outputDirectory, this.outputDir),\n ): Promise<void> {\n const analyzeDir = join(outputDirectory, this.analyzeOutputDir);\n\n const bundlerOptions = await this.getUserBundlerOptions(mastraEntryFile, outputDirectory);\n // Throws a USER-category MastraError on bad config, deliberately outside the try\n // blocks below so it surfaces as-is instead of as an analyze/bundle stage failure.\n const extraEntries = resolveExtraEntries(bundlerOptions.entries, mastraEntryFile);\n const internalBundlerOptions: BundlerOptions = {\n enableSourcemap: !!bundlerOptions.sourcemap,\n enableMinify: !!bundlerOptions.minify,\n externals: bundlerOptions.externals ?? [],\n enableEsmShim,\n dynamicPackages: bundlerOptions.dynamicPackages,\n entries: extraEntries,\n };\n\n if (Object.keys(extraEntries).length > 0) {\n this.logger.info('Found additional entries', { entries: Object.keys(extraEntries) });\n }\n\n let analyzedBundleInfo;\n try {\n const resolvedToolsPaths = await this.listToolsInputOptions(toolsPaths);\n analyzedBundleInfo = await analyzeBundle(\n // Extra entries are analyzed too — otherwise their externals never reach the\n // generated package.json and the emitted bundle cannot resolve them at runtime.\n [serverFile, ...Object.values(extraEntries), ...Object.values(resolvedToolsPaths)],\n mastraEntryFile,\n {\n outputDir: analyzeDir,\n projectRoot,\n platform: this.platform,\n bundlerOptions: internalBundlerOptions,\n },\n this.logger,\n );\n } catch (error) {\n const message = error instanceof Error ? error.message : String(error);\n\n if (error instanceof MastraError) {\n throw error;\n }\n\n throw new MastraError(\n {\n id: 'DEPLOYER_BUNDLER_ANALYZE_FAILED',\n text: `Failed to analyze Mastra application: ${message}`,\n domain: ErrorDomain.DEPLOYER,\n category: ErrorCategory.SYSTEM,\n },\n error,\n );\n }\n\n const { workspaceRoot } = await getWorkspaceInformation({ dir: projectRoot, mastraEntryFile });\n const sourceDependencyConstraints = await getSourceDependencyConstraints({\n projectRoot,\n mastraEntryFile,\n workspaceRoot,\n });\n const dependenciesToInstall = new Map<string, ExternalDependencyInfo>();\n for (const [dep, depInfo] of analyzedBundleInfo.externalDependencies) {\n if (analyzedBundleInfo.workspaceMap.has(dep) || !isBareModuleSpecifier(dep)) {\n continue;\n }\n\n dependenciesToInstall.set(dep, applySourceDependencyRange(dep, depInfo, sourceDependencyConstraints));\n }\n\n const initialWorkspaceDependencies = new Set<string>();\n for (const dep of analyzedBundleInfo.dependencies.keys()) {\n const pkgName = getPackageName(dep);\n if (pkgName && analyzedBundleInfo.workspaceMap.has(pkgName)) {\n initialWorkspaceDependencies.add(pkgName);\n }\n }\n\n const transitiveWorkspaceDependencies = collectTransitiveWorkspaceDependencies({\n workspaceMap: analyzedBundleInfo.workspaceMap,\n initialDependencies: initialWorkspaceDependencies,\n logger: this.logger,\n });\n\n for (const [dep, packageSpec] of Object.entries(transitiveWorkspaceDependencies.resolutions)) {\n dependenciesToInstall.set(dep, {\n version: analyzedBundleInfo.workspaceMap.get(dep)?.version,\n packageSpec,\n });\n }\n\n try {\n await this.writePackageJson(\n join(outputDirectory, this.outputDir),\n dependenciesToInstall,\n transitiveWorkspaceDependencies.resolutions,\n );\n if (transitiveWorkspaceDependencies.usedWorkspacePackages.size > 0) {\n await packWorkspaceDependencies({\n workspaceMap: analyzedBundleInfo.workspaceMap,\n usedWorkspacePackages: transitiveWorkspaceDependencies.usedWorkspacePackages,\n bundleOutputDir: join(outputDirectory, this.outputDir),\n logger: this.logger,\n });\n }\n\n this.logger.info('Bundling Mastra application');\n\n const inputOptions: InputOptions = await this.getBundlerOptions(\n serverFile,\n mastraEntryFile,\n analyzedBundleInfo,\n toolsPaths,\n internalBundlerOptions,\n );\n\n const bundler = await this.createBundler(\n {\n ...inputOptions,\n logLevel: inputOptions.logLevel === 'silent' ? 'warn' : inputOptions.logLevel,\n onwarn: warning => {\n if (warning.code === 'CIRCULAR_DEPENDENCY') {\n if (warning.ids?.[0]?.includes('node_modules')) {\n return;\n }\n\n this.logger.warn('Circular dependency found', {\n dependency: warning.message.replace('Circular dependency: ', ''),\n });\n }\n },\n },\n {\n dir: bundleLocation,\n manualChunks: {\n mastra: ['#mastra'],\n },\n sourcemap: internalBundlerOptions.enableSourcemap,\n },\n );\n\n await bundler.write();\n const toolImports: string[] = [];\n const toolsExports: string[] = [];\n Array.from(Object.keys(inputOptions.input || {}))\n .filter(key => key.startsWith('tools/'))\n .forEach((key, index) => {\n const toolExport = `tool${index}`;\n toolImports.push(`import * as ${toolExport} from './${key}.mjs';`);\n toolsExports.push(toolExport);\n });\n\n await writeFile(\n join(bundleLocation, 'tools.mjs'),\n `${toolImports.join('\\n')}\n\nexport const tools = [${toolsExports.join(', ')}]`,\n );\n this.logger.info('Bundling Mastra done');\n\n this.logger.info('Copying public files');\n await this.copyPublic(dirname(mastraEntryFile), outputDirectory);\n this.logger.info('Done copying public files');\n\n // For Software Factory projects, write a deterministic deployment marker\n // after public assets (including the SPA) have been copied.\n if (analyzedBundleInfo.projectType === 'factory') {\n await this.writeFactoryMarker(outputDirectory);\n }\n\n this.logger.info('Copying .npmrc file');\n await this.copyDOTNPMRC({ outputDirectory, rootDir: projectRoot });\n\n this.logger.info('Done copying .npmrc file');\n\n this.logger.info('Installing dependencies');\n await this.installDependencies(outputDirectory, projectRoot, transitiveWorkspaceDependencies.resolutions);\n this.logger.info('Done installing dependencies');\n\n if (Object.keys(transitiveWorkspaceDependencies.resolutions).length === 0) {\n this.logger.info('Generating package-lock.json for deploy');\n await this.generateNpmLockfile(join(outputDirectory, this.outputDir));\n this.logger.info('Done generating package-lock.json');\n } else {\n this.logger.warn(\n 'Skipping package-lock.json generation because the output contains packed workspace dependencies',\n );\n }\n } catch (error) {\n if (error instanceof MastraError && error.id === 'DEPLOYER_BUNDLER_FACTORY_UI_MISSING') {\n throw error;\n }\n\n const message = error instanceof Error ? error.message : String(error);\n throw new MastraError(\n {\n id: 'DEPLOYER_BUNDLER_BUNDLE_STAGE_FAILED',\n text: `Failed during bundler bundle stage: ${message}`,\n domain: ErrorDomain.DEPLOYER,\n category: ErrorCategory.SYSTEM,\n },\n error,\n );\n }\n }\n\n async lint(_entryFile: string, _outputDirectory: string, toolsPaths: (string | string[])[]): Promise<void> {\n const toolsInputOptions = await this.listToolsInputOptions(toolsPaths);\n const toolsLength = Object.keys(toolsInputOptions).length;\n if (toolsLength > 0) {\n this.logger.info('Found tools', { count: toolsLength });\n }\n }\n}\n"],"mappings":"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"}
|
|
@@ -637,7 +637,7 @@ function mastraToolsAliasPlugin() {
|
|
|
637
637
|
}
|
|
638
638
|
};
|
|
639
639
|
}
|
|
640
|
-
async function getInputOptions(entryFile, analyzedBundleInfo, platform, env = { "process.env.NODE_ENV": JSON.stringify("production") }, { sourcemap = false, isDev = false, projectRoot, workspaceRoot = void 0, enableEsmShim = true, externalsPreset = false }) {
|
|
640
|
+
async function getInputOptions(entryFile, analyzedBundleInfo, platform, env = { "process.env.NODE_ENV": JSON.stringify("production") }, { sourcemap = false, minify = false, isDev = false, projectRoot, workspaceRoot = void 0, enableEsmShim = true, externalsPreset = false }) {
|
|
641
641
|
const nodeResolvePlugin = (0, _rollup_plugin_node_resolve.default)(require_utils.getNodeResolveOptions(platform));
|
|
642
642
|
const externalsCopy = new Set(analyzedBundleInfo.externalDependencies.keys());
|
|
643
643
|
const externals = externalsPreset ? [] : Array.from(externalsCopy);
|
|
@@ -688,7 +688,11 @@ async function getInputOptions(entryFile, analyzedBundleInfo, platform, env = {
|
|
|
688
688
|
esbuild({
|
|
689
689
|
include: entryFile,
|
|
690
690
|
platform
|
|
691
|
-
})
|
|
691
|
+
}),
|
|
692
|
+
minify ? (0, rollup_plugin_esbuild.minify)({
|
|
693
|
+
target: "node20",
|
|
694
|
+
sourceMap: sourcemap
|
|
695
|
+
}) : null
|
|
692
696
|
].filter(Boolean)
|
|
693
697
|
};
|
|
694
698
|
}
|
|
@@ -788,4 +792,4 @@ Object.defineProperty(exports, "tsConfigPaths", {
|
|
|
788
792
|
}
|
|
789
793
|
});
|
|
790
794
|
|
|
791
|
-
//# sourceMappingURL=bundler-
|
|
795
|
+
//# sourceMappingURL=bundler-DCGtF4jP.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundler-u9WOUtpl.cjs","names":["getPackageName","isBareModuleSpecifier","isExternalProtocolImport","getPackageName","isExternalProtocolImport","removeDeployer","t","removeDeployerBabelPlugin","isDependencyPartOfPackage","slash","getNodeResolveOptions"],"sources":["../src/build/plugins/esbuild.ts","../src/build/plugins/esm-shim.ts","../src/build/plugins/local-storage-detector.ts","../src/build/package-info.ts","../src/build/plugins/node-modules-extension-resolver.ts","../src/build/plugins/protocol-external-resolver.ts","../src/build/babel/remove-deployer.ts","../src/build/plugins/remove-deployer.ts","../src/build/plugins/subpath-externals-resolver.ts","../src/build/plugins/tsconfig-paths.ts","../src/build/bundler.ts"],"sourcesContent":["import originalEsbuild from 'rollup-plugin-esbuild';\n\nexport function esbuild(options: Parameters<typeof originalEsbuild>[0] = {}) {\n return originalEsbuild({\n target: 'node20',\n platform: 'node',\n minify: false,\n ...options,\n });\n}\n","import originalEsmShim from '@rollup/plugin-esm-shim';\nimport type { Plugin } from 'rollup';\n\n// Regex to detect DECLARATIONS of __filename, __dirname\n// Using non-capturing group (?:) for slightly better performance\nconst FilenameDeclarationRegex = /(?:const|let|var)\\s+__filename/;\nconst DirnameDeclarationRegex = /(?:const|let|var)\\s+__dirname/;\n\n/**\n * Custom ESM shim plugin wrapper that respects user-declared __filename/__dirname variables.\n *\n * The original @rollup/plugin-esm-shim would inject shims even when users had already declared\n * their own __filename/__dirname, causing \"Identifier '__filename' has already been declared\" errors.\n *\n * This wrapper checks if the user has already declared these variables and skips the shim injection\n * if so. If either variable is declared, we skip the shim entirely since the original plugin injects\n * both together and we assume users who declare one will also handle the other if needed.\n */\nexport function esmShim(): Plugin {\n const original = originalEsmShim();\n\n return {\n name: 'esm-shim',\n renderChunk(code, chunk, opts, meta) {\n // Fast path: use includes() first to avoid regex if identifiers aren't present\n const hasFilename = code.includes('__filename');\n const hasDirname = code.includes('__dirname');\n\n // If user declared either __filename or __dirname, skip shim injection entirely\n // since the original plugin injects both together\n const userDeclaredFilename = hasFilename && FilenameDeclarationRegex.test(code);\n const userDeclaredDirname = hasDirname && DirnameDeclarationRegex.test(code);\n\n if (userDeclaredFilename || userDeclaredDirname) {\n return null;\n }\n\n // Otherwise, delegate to the original plugin\n if (typeof original.renderChunk === 'function') {\n return original.renderChunk.call(this, code, chunk, opts, meta);\n }\n\n return null;\n },\n };\n}\n\nexport default esmShim;\n","import type { Plugin } from 'rollup';\n\n/**\n * Connection-string-shaped patterns that resolve to the build host and will\n * never work inside the deploy container.\n */\nconst LOCAL_HOST_PATTERNS: Array<{ pattern: RegExp; hint: string }> = [\n {\n pattern: /\\bfile:\\.{1,2}\\/[^\\s'\"`]+\\.(?:db|sqlite)\\b/gi,\n hint: 'LibSQL/SQLite file path relative to the build host',\n },\n {\n pattern: /\\b(?:postgres(?:ql)?|mysql|mongodb|redis|libsql):\\/\\/[^/\\s'\"`]*localhost\\b/gi,\n hint: 'localhost in a connection string',\n },\n {\n pattern: /\\b(?:postgres(?:ql)?|mysql|mongodb|redis|libsql):\\/\\/[^/\\s'\"`]*127\\.0\\.0\\.1\\b/g,\n hint: '127.0.0.1 in a connection string',\n },\n];\n\nexport interface LocalStorageDetection {\n value: string;\n hint: string;\n module: string;\n /**\n * Name of the env var that guards this literal at runtime, when the\n * literal is the fallback arm of a `process.env.X || literal` (or `??`)\n * expression. The CLI preflight uses this to suppress or soften the\n * error when the guarding var is present in the deploy env.\n */\n guardedBy?: string;\n}\n\n/**\n * Unified preflight metadata emitted as `preflight-metadata.json`.\n * Superset of the legacy `preflight-local-paths.json` (which stays emitted\n * for one release so older CLIs keep working with newer deployers).\n */\nexport interface PreflightMetadata {\n version: 1;\n localPaths: LocalStorageDetection[];\n userEnvRefs: string[];\n}\n\n/**\n * Everything under `.mastra/.build/` is deployer-generated pre-bundled\n * dependency code (`@mastra__*.mjs` shims and their shared `chunk-*.mjs`\n * files), never user-authored. These preserve JSDoc examples from the\n * original library source (e.g. `LibSQLStore({ url: 'file:./data.db' })`)\n * which would otherwise trip the host-local detector, and their env var\n * reads are library refs that must not count as user references.\n */\nconst MASTRA_BUILD_DIR = /[\\\\/]\\.mastra[\\\\/]\\.build[\\\\/]/;\n\nconst PROCESS_ENV_DOT = /\\bprocess\\.env\\.([A-Z_][A-Z0-9_]*)\\b/g;\nconst PROCESS_ENV_BRACKET = /\\bprocess\\.env\\[['\"]([A-Z_][A-Z0-9_]*)['\"]\\]/g;\n\n/** Names of the metadata assets emitted into the output dir. */\n// TODO(preflight-metadata): stop emitting the legacy file in the next minor\n// after @mastra/deployer 1.50 — every CLI released alongside 1.50+ reads\n// preflight-metadata.json. Also remove the legacy fallback in the CLI's\n// deploy-preflight.ts at the same time.\nconst LEGACY_LOCAL_PATHS_FILE = 'preflight-local-paths.json';\nconst PREFLIGHT_METADATA_FILE = 'preflight-metadata.json';\n\ninterface ModuleMatch {\n value: string;\n hint: string;\n guardedBy?: string;\n}\n\nfunction collectEnvRefs(code: string): Set<string> {\n const refs = new Set<string>();\n for (const m of code.matchAll(PROCESS_ENV_DOT)) refs.add(m[1]!);\n for (const m of code.matchAll(PROCESS_ENV_BRACKET)) refs.add(m[1]!);\n return refs;\n}\n\n/* ------------------------------------------------------------------ */\n/* AST guard analysis */\n/* ------------------------------------------------------------------ */\n\ninterface AstNode {\n type: string;\n [key: string]: unknown;\n}\n\nfunction isAstNode(v: unknown): v is AstNode {\n return typeof v === 'object' && v !== null && typeof (v as AstNode).type === 'string';\n}\n\nfunction walkAst(node: AstNode, visit: (node: AstNode) => void): void {\n visit(node);\n for (const value of Object.values(node)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n if (isAstNode(item)) walkAst(item, visit);\n }\n } else if (isAstNode(value)) {\n walkAst(value, visit);\n }\n }\n}\n\n/** Find the first `process.env.X` / `process.env['X']` read inside an expression. */\nfunction findFirstEnvRef(node: AstNode): string | undefined {\n let found: string | undefined;\n walkAst(node, n => {\n if (found !== undefined) return;\n if (n.type !== 'MemberExpression') return;\n const object = n.object as AstNode | undefined;\n if (\n !object ||\n object.type !== 'MemberExpression' ||\n (object.object as AstNode | undefined)?.type !== 'Identifier' ||\n ((object.object as AstNode).name as string) !== 'process' ||\n (object.property as AstNode | undefined)?.type !== 'Identifier' ||\n ((object.property as AstNode).name as string) !== 'env'\n ) {\n return;\n }\n const property = n.property as AstNode | undefined;\n if (property?.type === 'Identifier' && !n.computed) {\n found = property.name as string;\n } else if (property?.type === 'Literal' && typeof property.value === 'string') {\n found = property.value;\n }\n });\n return found;\n}\n\n/**\n * Parse a module and figure out, for each detected local-path value, whether\n * every string literal containing it is the fallback arm of a\n * `process.env.X || <literal>` / `??` expression. Returns a map from\n * detected value to guarding env var name. Values with any unguarded\n * occurrence (or inconsistent guards) are absent — the CLI then errors as\n * before, which is the safe default.\n */\nfunction findGuardedValues(ast: AstNode, values: Set<string>): Map<string, string> {\n const stringLiterals: AstNode[] = [];\n const guardedLiterals = new Map<AstNode, string>();\n\n walkAst(ast, node => {\n if (node.type === 'Literal' && typeof node.value === 'string') {\n stringLiterals.push(node);\n return;\n }\n if (node.type === 'LogicalExpression' && (node.operator === '||' || node.operator === '??')) {\n const right = node.right as AstNode | undefined;\n if (right?.type === 'Literal' && typeof right.value === 'string') {\n const envName = findFirstEnvRef(node.left as AstNode);\n if (envName) guardedLiterals.set(right, envName);\n }\n }\n });\n\n const result = new Map<string, string>();\n for (const value of values) {\n const containing = stringLiterals.filter(lit => (lit.value as string).includes(value));\n if (containing.length === 0) continue;\n const guards = containing.map(lit => guardedLiterals.get(lit));\n const first = guards[0];\n if (first !== undefined && guards.every(g => g === first)) {\n result.set(value, first);\n }\n }\n return result;\n}\n\n/**\n * Rollup plugin that detects host-local storage URLs (e.g. `file:./mastra.db`,\n * `postgres://localhost`) in **user source modules** during bundling, and\n * collects the env vars user code reads via `process.env.X`.\n *\n * Only modules outside `node_modules` (and the deployer's own\n * `.mastra/.build/` pre-bundled files) are inspected, so library code\n * (like Agent Builder prompt templates or JSDoc examples in `@mastra/core`)\n * is naturally excluded. When `rootDir` is given, modules outside it are\n * also excluded — symlinked dependencies (pnpm `link:`/`file:`) resolve to\n * real paths that never contain `node_modules`. Tree-shaken modules are\n * excluded via\n * `generateBundle` — only modules that actually contribute rendered code to\n * the output are reported.\n *\n * When a detected literal is the fallback arm of a `process.env.X || literal`\n * expression, `guardedBy: \"X\"` is recorded so the CLI preflight can apply\n * deploy-time env context instead of hard-erroring on a dead fallback.\n *\n * Two assets are emitted into the output directory for the CLI preflight:\n * - `preflight-metadata.json` — unified metadata (local paths + user env refs)\n * - `preflight-local-paths.json` — legacy shape, kept for one release so an\n * older globally-installed CLI paired with a newer project-local deployer\n * doesn't lose the LOCAL_STORAGE_PATH check.\n */\nexport function localStorageDetector(rootDir?: string): Plugin {\n const userModuleMatches = new Map<string, ModuleMatch[]>();\n const userModuleEnvRefs = new Map<string, Set<string>>();\n let normalizedRoot: string | undefined;\n if (rootDir) {\n let root = rootDir.replace(/\\\\/g, '/');\n while (root.endsWith('/')) root = root.slice(0, -1);\n normalizedRoot = root + '/';\n }\n\n return {\n name: 'mastra-local-storage-detector',\n\n transform(_code, id) {\n if (id.includes('node_modules')) return null;\n if (MASTRA_BUILD_DIR.test(id)) return null;\n // Modules outside the project/workspace root are dependencies resolved\n // through symlinks (pnpm `link:`, `file:`, monorepo dev setups) whose\n // real path escapes `node_modules` — library code, not user code.\n if (normalizedRoot && !id.replace(/\\\\/g, '/').startsWith(normalizedRoot)) return null;\n\n const refs = collectEnvRefs(_code);\n if (refs.size > 0) {\n userModuleEnvRefs.set(id, refs);\n }\n\n const matches: ModuleMatch[] = [];\n for (const { pattern, hint } of LOCAL_HOST_PATTERNS) {\n const re = new RegExp(pattern.source, pattern.flags.includes('g') ? pattern.flags : pattern.flags + 'g');\n for (const m of _code.matchAll(re)) {\n matches.push({ value: m[0], hint });\n }\n }\n\n if (matches.length > 0) {\n // Best-effort structural pass: a parse failure (or a non-Rollup test\n // context without `this.parse`) simply means no `guardedBy`, which\n // preserves the previous always-error behavior.\n try {\n const ast = this.parse(_code) as unknown as AstNode;\n const guarded = findGuardedValues(ast, new Set(matches.map(m => m.value)));\n for (const match of matches) {\n const guardedBy = guarded.get(match.value);\n if (guardedBy) match.guardedBy = guardedBy;\n }\n } catch {\n // ignore — fall back to unguarded detections\n }\n\n userModuleMatches.set(id, matches);\n }\n\n return null;\n },\n\n generateBundle(_, bundle) {\n const detections: LocalStorageDetection[] = [];\n const seen = new Set<string>();\n const userEnvRefs = new Set<string>();\n\n for (const chunk of Object.values(bundle)) {\n if (chunk.type !== 'chunk') continue;\n\n for (const [moduleId, moduleInfo] of Object.entries(chunk.modules)) {\n if (moduleInfo.renderedLength === 0) continue;\n\n for (const ref of userModuleEnvRefs.get(moduleId) ?? []) {\n userEnvRefs.add(ref);\n }\n\n const matches = userModuleMatches.get(moduleId);\n if (!matches) continue;\n\n for (const { value, hint, guardedBy } of matches) {\n const key = `${hint}::${value}`;\n if (seen.has(key)) continue;\n seen.add(key);\n\n detections.push({ value, hint, module: moduleId, ...(guardedBy ? { guardedBy } : {}) });\n }\n }\n }\n\n const metadata: PreflightMetadata = {\n version: 1,\n localPaths: detections,\n userEnvRefs: [...userEnvRefs].sort(),\n };\n\n this.emitFile({\n type: 'asset',\n fileName: PREFLIGHT_METADATA_FILE,\n source: JSON.stringify(metadata),\n });\n\n // Legacy asset — shape unchanged (no `guardedBy`) for older CLIs.\n this.emitFile({\n type: 'asset',\n fileName: LEGACY_LOCAL_PATHS_FILE,\n source: JSON.stringify(detections.map(({ value, hint, module }) => ({ value, hint, module }))),\n });\n },\n };\n}\n","/**\n * Note: This function depends on local-pkg and should only be used at build-time.\n * It is in a separate file to avoid including local-pkg in runtime code.\n */\n\nimport { statSync } from 'node:fs';\nimport { dirname } from 'node:path';\nimport { fileURLToPath, pathToFileURL } from 'node:url';\nimport { readJSON } from 'fs-extra/esm';\nimport { getPackageInfo } from 'local-pkg';\nimport { getPackageName } from './utils';\n\n/**\n * Normalize a resolution base path to a directory file URL.\n *\n * Callers often pass a module file path (e.g. a rollup module id like\n * `node_modules/@mastra/core/dist/chunk-XYZ.js`) as the parent path. mlly (used by local-pkg)\n * also treats each resolution base as a directory candidate (`<base>/_index.js`), which makes it\n * try to read `<file>/package.json`. That fails with ENOTDIR, which mlly does not tolerate\n * (only ENOENT) and local-pkg then logs the raw error to the console. Using the file's directory\n * as the base avoids this while resolving identically.\n */\nfunction toParentDirectoryUrl(parentPath: string): string {\n let fsPath = parentPath.startsWith('file://') ? fileURLToPath(parentPath) : parentPath;\n\n try {\n if (statSync(fsPath).isFile()) {\n fsPath = dirname(fsPath);\n }\n } catch {\n // non-existent paths are used as-is\n }\n\n return pathToFileURL(fsPath).href;\n}\n\n/**\n * Get package root path\n */\nexport async function getPackageRootPath(packageName: string, parentPath?: string): Promise<string | null> {\n let rootPath: string | null;\n\n try {\n let options: { paths?: string[] } | undefined = undefined;\n if (parentPath) {\n options = {\n paths: [toParentDirectoryUrl(parentPath)],\n };\n }\n\n const pkg = await getPackageInfo(packageName, options);\n rootPath = pkg?.rootPath ?? null;\n } catch {\n rootPath = null;\n }\n\n return rootPath;\n}\n\nasync function readPackageMetadata(\n rootPath: string,\n requestedPackageName: string | null,\n): Promise<{ rootPath: string; version?: string; packageSpec?: string }> {\n try {\n const pkgJson = await readJSON(`${rootPath}/package.json`);\n const version = pkgJson.version;\n const actualPackageName = pkgJson.name;\n const packageSpec =\n version && actualPackageName && requestedPackageName && requestedPackageName !== actualPackageName\n ? `npm:${actualPackageName}@${version}`\n : undefined;\n\n return { rootPath, version, packageSpec };\n } catch {\n return { rootPath };\n }\n}\n\nexport async function getPackageMetadata(\n packageName: string,\n parentPath?: string,\n): Promise<{ rootPath: string | null; version?: string; packageSpec?: string }> {\n const requestedPackageName = getPackageName(packageName);\n const packageNames = [...new Set([packageName, requestedPackageName].filter(Boolean) as string[])];\n let firstRootPath: string | null = null;\n\n for (const name of packageNames) {\n const rootPath = await getPackageRootPath(name, parentPath);\n firstRootPath ??= rootPath;\n if (!rootPath) {\n continue;\n }\n\n const metadata = await readPackageMetadata(rootPath, requestedPackageName ?? null);\n if (metadata.version || metadata.packageSpec) {\n return metadata;\n }\n }\n\n return { rootPath: firstRootPath };\n}\n","import { readFile } from 'node:fs/promises';\nimport { join, isAbsolute } from 'node:path';\nimport nodeResolve from '@rollup/plugin-node-resolve';\nimport type { Plugin } from 'rollup';\nimport type { PackageJson } from 'type-fest';\nimport { getPackageRootPath } from '../package-info';\nimport { getPackageName, isExternalProtocolImport, isBareModuleSpecifier } from '../utils';\n\n/**\n * Check if a package has an exports field in its package.json.\n * Results are cached to avoid repeated filesystem reads.\n */\nasync function getPackageJSON(pkgName: string, importer: string): Promise<PackageJson> {\n const pkgRoot = await getPackageRootPath(pkgName, importer);\n if (!pkgRoot) {\n throw new Error(`Package ${pkgName} not found`);\n }\n\n const pkgJSON = JSON.parse(await readFile(join(pkgRoot, 'package.json'), 'utf-8')) as PackageJson;\n return pkgJSON;\n}\n\n/**\n * Rollup plugin that resolves module extensions for external dependencies.\n *\n * This plugin handles ESM compatibility for external imports when node-resolve is not used:\n * - Packages WITH exports field (e.g., hono, date-fns): Keep imports as-is or strip redundant extensions\n * - Packages WITHOUT exports field (e.g., lodash): Add .js extension for direct file imports\n */\nexport function nodeModulesExtensionResolver(): Plugin {\n // Create a single instance of node-resolve to reuse\n const nodeResolvePlugin = nodeResolve();\n\n return {\n name: 'node-modules-extension-resolver',\n async resolveId(id, importer, options) {\n // Only bare package imports are relevant here.\n if (!importer || !isBareModuleSpecifier(id) || isExternalProtocolImport(id) || isAbsolute(id)) {\n return null;\n }\n\n // Skip direct package imports (e.g., 'lodash', '@mastra/core')\n const parts = id.split('/');\n const isScoped = id.startsWith('@');\n if ((isScoped && parts.length === 2) || (!isScoped && parts.length === 1)) {\n return null;\n }\n\n const pkgName = getPackageName(id);\n if (!pkgName) {\n return null;\n }\n\n try {\n const packageJSON = await getPackageJSON(pkgName, importer);\n // if it has exports, node should be able to rsolve it, if not the exports map is wrong.\n if (!!packageJSON.exports) {\n return null;\n }\n\n const packageRoot = await getPackageRootPath(pkgName, importer);\n // @ts-expect-error - handle is part of resolveId signature\n const nodeResolved = await nodeResolvePlugin.resolveId?.handler?.call(this, id, importer, options);\n // if we cannot resolve it, it's not a valid import so we let node handle it\n if (!nodeResolved?.id) {\n return null;\n }\n\n let filePath = nodeResolved.id;\n if (nodeResolved.resolvedBy === 'commonjs--resolver') {\n filePath = filePath.substring(1).split('?')[0];\n }\n\n const resolvedImportPath = filePath.replace(packageRoot, pkgName);\n\n return {\n id: resolvedImportPath,\n external: true,\n };\n } catch {\n return null;\n }\n },\n };\n}\n","import type { Plugin } from 'rollup';\nimport { isExternalProtocolImport } from '../utils';\n\nexport function protocolExternalResolver({ exclude = ['node:'] }: { exclude?: readonly string[] } = {}): Plugin {\n return {\n name: 'protocol-external-resolver',\n resolveId(id) {\n if (!isExternalProtocolImport(id, exclude)) {\n return null;\n }\n\n return {\n id,\n external: true,\n };\n },\n } satisfies Plugin;\n}\n","import { types as t } from '@babel/core';\nimport type { NodePath, PluginObject, PluginPass } from '@babel/core';\n\ninterface RemoveDeployerState extends PluginPass {\n hasReplaced?: boolean;\n}\n\nexport function removeDeployer(): PluginObject<RemoveDeployerState> {\n // Helper to remove deployer property from an object and clean up its binding\n function removeDeployerFromObject(\n objectExpr: t.ObjectExpression,\n scope: { getBinding: (name: string) => { path?: NodePath } | undefined },\n ): t.ObjectProperty | undefined {\n const deployerProp = objectExpr.properties.find(\n prop => t.isObjectProperty(prop) && t.isIdentifier(prop.key) && prop.key.name === 'deployer',\n ) as t.ObjectProperty | undefined;\n\n if (deployerProp) {\n objectExpr.properties = objectExpr.properties.filter(prop => prop !== deployerProp);\n\n // Clean up the deployer binding if it's a reference\n if (t.isIdentifier(deployerProp.value)) {\n const deployerBinding = scope.getBinding(deployerProp.value.name);\n if (deployerBinding) {\n deployerBinding.path?.parentPath?.remove();\n }\n }\n }\n\n return deployerProp;\n }\n\n return {\n name: 'remove-deployer',\n visitor: {\n NewExpression(path, state: RemoveDeployerState) {\n // is a variable declaration\n const varDeclaratorPath = path.findParent(path => t.isVariableDeclarator(path.node));\n if (!varDeclaratorPath) {\n return;\n }\n\n const parentNode = path.parentPath.node;\n // check if it's a const of mastra\n if (!t.isVariableDeclarator(parentNode) || !t.isIdentifier(parentNode.id) || parentNode.id.name !== 'mastra') {\n return;\n }\n\n if (!state.hasReplaced) {\n state.hasReplaced = true;\n const newMastraObj = t.cloneNode(path.node);\n if (t.isObjectExpression(newMastraObj.arguments[0]) && newMastraObj.arguments[0].properties?.length) {\n const objectArg = newMastraObj.arguments[0];\n let foundDeployer = false;\n\n // First, check for direct deployer property\n const directDeployer = removeDeployerFromObject(objectArg, state.file.scope);\n if (directDeployer) {\n foundDeployer = true;\n }\n\n // Then, check spread elements for deployer properties\n for (const prop of objectArg.properties) {\n if (t.isSpreadElement(prop) && t.isIdentifier(prop.argument)) {\n const spreadBinding = state.file.scope.getBinding(prop.argument.name);\n if (spreadBinding?.path && t.isVariableDeclarator(spreadBinding.path.node)) {\n const init = spreadBinding.path.node.init;\n if (t.isObjectExpression(init)) {\n const spreadDeployer = removeDeployerFromObject(init, state.file.scope);\n if (spreadDeployer) {\n foundDeployer = true;\n }\n }\n }\n }\n }\n\n if (foundDeployer) {\n path.replaceWith(newMastraObj);\n }\n }\n }\n },\n },\n } as PluginObject<RemoveDeployerState>;\n}\n","import { transformAsync } from '@babel/core';\nimport type { Plugin, SourceMapInput } from 'rollup';\n\nimport { removeDeployer as removeDeployerBabelPlugin } from '../babel/remove-deployer';\n\nexport function removeDeployer(mastraEntry: string, options?: { sourcemap?: boolean }): Plugin {\n return {\n name: 'remove-deployer',\n transform(code, id) {\n if (id !== mastraEntry) {\n return;\n }\n\n return transformAsync(code, {\n babelrc: false,\n configFile: false,\n filename: id,\n plugins: [removeDeployerBabelPlugin],\n sourceMaps: options?.sourcemap,\n }).then(result => ({\n code: result!.code!,\n map: result!.map! as SourceMapInput,\n }));\n },\n } satisfies Plugin;\n}\n","import type { Plugin } from 'rollup';\nimport { isDependencyPartOfPackage } from '../utils';\n\nexport function subpathExternalsResolver(externals: string[]): Plugin {\n return {\n name: 'subpath-externals-resolver',\n resolveId(id) {\n if (id.startsWith('.') || id.startsWith('/')) {\n return null;\n }\n\n const isPartOfExternals = externals.some(external => isDependencyPartOfPackage(id, external));\n if (isPartOfExternals) {\n return {\n id,\n external: true,\n };\n }\n },\n } satisfies Plugin;\n}\n","import fs from 'node:fs';\nimport path, { normalize } from 'node:path';\nimport type { Plugin } from 'rollup';\nimport stripJsonComments from 'strip-json-comments';\nimport type { RegisterOptions } from 'typescript-paths';\nimport { createHandler } from 'typescript-paths';\n\nconst PLUGIN_NAME = 'tsconfig-paths';\nconst JS_IMPORT_SOURCE_EXTENSIONS = ['.ts', '.tsx', '.js', '.jsx'];\n\nexport type PluginOptions = Omit<RegisterOptions, 'loggerID'> & { localResolve?: boolean };\n\n/**\n * Check if a tsconfig file has path mappings configured.\n * Exported for testing purposes.\n *\n * @param tsConfigPath - Path to the tsconfig.json file\n * @returns true if the tsconfig has paths configured or extends another config, false otherwise\n */\nexport function hasPaths(tsConfigPath: string): boolean {\n try {\n const content = fs.readFileSync(tsConfigPath, 'utf8');\n const config = JSON.parse(stripJsonComments(content));\n return !!(\n (config.compilerOptions?.paths && Object.keys(config.compilerOptions.paths).length > 0) ||\n (typeof config.extends === 'string' && config.extends.length > 0) ||\n (Array.isArray(config.extends) && config.extends.length > 0)\n );\n } catch {\n return false;\n }\n}\n\nexport function tsConfigPaths({ tsConfigPath, respectCoreModule, localResolve }: PluginOptions = {}): Plugin {\n const handlerCache = new Map<string, ReturnType<typeof createHandler>>();\n\n function resolveJsImportToSourceFile(moduleName: string): string {\n if (fs.existsSync(moduleName)) {\n return moduleName;\n }\n\n const parsed = path.parse(moduleName);\n if (parsed.ext !== '.js') {\n return moduleName;\n }\n\n for (const extension of JS_IMPORT_SOURCE_EXTENSIONS) {\n const candidate = path.join(parsed.dir, `${parsed.name}${extension}`);\n if (fs.existsSync(candidate)) {\n return candidate;\n }\n }\n\n return moduleName;\n }\n\n // Find tsconfig.json file starting from a directory and walking up\n function findTsConfigForFile(filePath: string): string | null {\n let currentDir = path.dirname(filePath);\n const root = path.parse(currentDir).root;\n\n while (currentDir !== root) {\n const tsConfigPath = path.join(currentDir, 'tsconfig.json');\n\n if (fs.existsSync(tsConfigPath)) {\n // Check if this tsconfig has path mappings\n if (hasPaths(tsConfigPath)) {\n return tsConfigPath;\n }\n }\n\n // Also check for tsconfig.base.json (common in NX)\n const tsConfigBasePath = path.join(currentDir, 'tsconfig.base.json');\n if (fs.existsSync(tsConfigBasePath)) {\n if (hasPaths(tsConfigBasePath)) {\n return tsConfigBasePath;\n }\n }\n\n currentDir = path.dirname(currentDir);\n }\n\n return null;\n }\n\n // Get or create handler for a specific tsconfig file\n function getHandlerForFile(filePath: string): ReturnType<typeof createHandler> | null {\n // If a specific tsConfigPath was provided, use it\n if (tsConfigPath && typeof tsConfigPath === 'string') {\n if (!handlerCache.has(tsConfigPath)) {\n handlerCache.set(\n tsConfigPath,\n createHandler({\n log: () => {},\n tsConfigPath,\n respectCoreModule,\n falllback: moduleName => fs.existsSync(moduleName),\n }),\n );\n }\n return handlerCache.get(tsConfigPath)!;\n }\n\n // Find appropriate tsconfig for this file\n const configPath = findTsConfigForFile(filePath);\n if (!configPath) {\n return null;\n }\n\n // Cache handlers to avoid recreation\n if (!handlerCache.has(configPath)) {\n handlerCache.set(\n configPath,\n createHandler({\n log: () => {},\n tsConfigPath: configPath,\n respectCoreModule,\n falllback: moduleName => fs.existsSync(moduleName),\n }),\n );\n }\n\n return handlerCache.get(configPath)!;\n }\n\n // Simple alias resolution using dynamic handler\n function resolveAlias(request: string, importer: string): string | null | undefined {\n // Get the appropriate handler for this file\n const dynamicHandler = getHandlerForFile(importer);\n if (!dynamicHandler) {\n return null;\n }\n\n const resolved = dynamicHandler(request, normalize(importer));\n return resolved;\n }\n\n return {\n name: PLUGIN_NAME,\n resolveId: {\n order: 'pre',\n async handler(request, importer, options) {\n if (!importer || request.startsWith('\\0') || importer.charCodeAt(0) === 0) {\n return null;\n }\n\n // Convert relative paths to absolute to ensure proper tsconfig path resolution\n // This allows path aliases to work regardless of how the importer path is provided\n if (!path.isAbsolute(importer)) {\n importer = path.resolve(process.cwd(), importer);\n }\n\n const moduleName = resolveAlias(request, importer);\n // No tsconfig alias found, so we need to resolve it normally\n if (!moduleName) {\n const resolved = await this.resolve(request, importer, { skipSelf: true, ...options });\n if (!resolved) {\n return null;\n }\n\n // If localResolve is true, we need to check if the importer has been resolved by the tsconfig-paths plugin\n // if so, we need to resolve the request from the importer instead of the root and mark it as external\n if (localResolve) {\n const importerInfo = this.getModuleInfo(importer);\n const importerPluginMeta = importerInfo?.meta?.[PLUGIN_NAME];\n\n if (!request.startsWith('./') && !request.startsWith('../') && importerPluginMeta?.resolved) {\n return {\n ...resolved,\n external: !request.startsWith('hono/') && request !== 'hono',\n };\n }\n }\n\n return {\n ...resolved,\n meta: {\n ...(resolved.meta || {}),\n },\n };\n }\n\n const resolvedModuleName = resolveJsImportToSourceFile(moduleName);\n\n // When a module does not have an extension, we need to resolve it to a file\n if (!path.extname(resolvedModuleName)) {\n const resolved = await this.resolve(resolvedModuleName, importer, { skipSelf: true, ...options });\n\n if (!resolved) {\n return null;\n }\n\n return {\n ...resolved,\n meta: {\n ...resolved.meta,\n [PLUGIN_NAME]: {\n resolved: true,\n },\n },\n };\n }\n\n // Always pass through bundler's resolution to ensure proper path normalization\n const resolved = await this.resolve(resolvedModuleName, importer, { skipSelf: true, ...options });\n\n if (!resolved) {\n return null;\n }\n\n return {\n ...resolved,\n meta: {\n ...resolved.meta,\n [PLUGIN_NAME]: {\n resolved: true,\n },\n },\n };\n },\n },\n } satisfies Plugin;\n}\n","import { join } from 'node:path';\nimport { fileURLToPath, pathToFileURL } from 'node:url';\nimport { optimizeLodashImports } from '@optimize-lodash/rollup-plugin';\nimport alias from '@rollup/plugin-alias';\nimport commonjs from '@rollup/plugin-commonjs';\nimport json from '@rollup/plugin-json';\nimport nodeResolve from '@rollup/plugin-node-resolve';\nimport { rollup } from 'rollup';\nimport type { InputOptions, OutputOptions, Plugin } from 'rollup';\nimport type { WorkspacePackageInfo } from '../bundler/workspaceDependencies';\nimport { esbuild } from './plugins/esbuild';\nimport { esmShim } from './plugins/esm-shim';\nimport { localStorageDetector } from './plugins/local-storage-detector';\nimport { nodeModulesExtensionResolver } from './plugins/node-modules-extension-resolver';\nimport { protocolExternalResolver } from './plugins/protocol-external-resolver';\nimport { removeDeployer } from './plugins/remove-deployer';\nimport { subpathExternalsResolver } from './plugins/subpath-externals-resolver';\nimport { tsConfigPaths } from './plugins/tsconfig-paths';\nimport type { ExternalDependencyInfo } from './types';\nimport { getNodeResolveOptions, slash } from './utils';\nimport type { BundlerPlatform } from './utils';\n\nexport function mastraInternalAliasPlugin(entryFile: string): Plugin {\n const normalizedEntryFile = slash(entryFile);\n\n return alias({\n entries: [\n {\n find: /^\\#server$/,\n replacement: slash(fileURLToPath(import.meta.resolve('@mastra/deployer/server'))),\n },\n {\n find: /^\\@mastra\\/server\\/(.*)/,\n replacement: `@mastra/server/$1`,\n customResolver: id => {\n if (id.startsWith('@mastra/server')) {\n return {\n id: fileURLToPath(import.meta.resolve(id)),\n };\n }\n },\n },\n { find: /^\\#mastra$/, replacement: normalizedEntryFile },\n ],\n });\n}\n\nexport function mastraToolsAliasPlugin(): Plugin {\n return {\n name: 'tools-rewriter',\n resolveId(id: string) {\n if (id === '#tools') {\n return {\n id: './tools.mjs',\n external: true,\n };\n }\n },\n };\n}\n\nexport async function getInputOptions(\n entryFile: string,\n analyzedBundleInfo: {\n dependencies: Map<string, string>;\n externalDependencies: Map<string, ExternalDependencyInfo>;\n workspaceMap: Map<string, WorkspacePackageInfo>;\n projectType?: string;\n },\n platform: BundlerPlatform,\n env: Record<string, string> = { 'process.env.NODE_ENV': JSON.stringify('production') },\n {\n sourcemap = false,\n isDev = false,\n projectRoot,\n workspaceRoot = undefined,\n enableEsmShim = true,\n externalsPreset = false,\n }: {\n sourcemap?: boolean;\n isDev?: boolean;\n workspaceRoot?: string;\n projectRoot: string;\n enableEsmShim?: boolean;\n externalsPreset?: boolean;\n },\n): Promise<InputOptions> {\n const nodeResolvePlugin = nodeResolve(getNodeResolveOptions(platform));\n\n const externalsCopy = new Set<string>(analyzedBundleInfo.externalDependencies.keys());\n const externals = externalsPreset ? [] : Array.from(externalsCopy);\n\n return {\n logLevel: process.env.MASTRA_BUNDLER_DEBUG === 'true' ? 'debug' : 'silent',\n treeshake: 'smallest',\n preserveSymlinks: true,\n external: externals,\n plugins: [\n protocolExternalResolver(),\n subpathExternalsResolver(externals),\n {\n name: 'alias-optimized-deps',\n resolveId(id: string) {\n if (!analyzedBundleInfo.dependencies.has(id)) {\n return null;\n }\n\n const filename = analyzedBundleInfo.dependencies.get(id)!;\n const absolutePath = join(workspaceRoot || projectRoot, filename);\n\n // During `mastra dev` we want to keep deps as external\n if (isDev) {\n return {\n id: process.platform === 'win32' ? pathToFileURL(absolutePath).href : absolutePath,\n external: true,\n };\n }\n\n // For production builds return the absolute path as-is so Rollup can handle itself\n return {\n id: absolutePath,\n external: false,\n };\n },\n } satisfies Plugin,\n mastraInternalAliasPlugin(entryFile),\n tsConfigPaths(),\n mastraToolsAliasPlugin(),\n esbuild({\n platform,\n define: env,\n }),\n optimizeLodashImports({\n include: '**/*.{js,ts,mjs,cjs}',\n }),\n externalsPreset\n ? null\n : commonjs({\n extensions: ['.js', '.ts'],\n transformMixedEsModules: true,\n esmExternals(id) {\n return externals.includes(id);\n },\n }),\n enableEsmShim ? esmShim() : undefined,\n externalsPreset ? nodeModulesExtensionResolver() : nodeResolvePlugin,\n // for debugging\n // {\n // name: 'logger',\n // //@ts-expect-error\n // resolveId(id, ...args) {\n // console.log({ id, args });\n // },\n // // @ts-expect-error\n // transform(code, id) {\n // if (code.includes('class Duplexify ')) {\n // console.log({ duplex: id });\n // }\n // },\n // },\n json(),\n localStorageDetector(workspaceRoot || projectRoot),\n removeDeployer(entryFile, { sourcemap }),\n // treeshake unused imports\n esbuild({\n include: entryFile,\n platform,\n }),\n ].filter(Boolean),\n } satisfies InputOptions;\n}\n\nexport async function createBundler(\n inputOptions: InputOptions,\n outputOptions: Partial<OutputOptions> & { dir: string },\n) {\n const bundler = await rollup(inputOptions);\n\n return {\n write: () => {\n return bundler.write({\n ...outputOptions,\n format: 'esm',\n entryFileNames: '[name].mjs',\n chunkFileNames: '[name].mjs',\n });\n },\n close: () => {\n return bundler.close();\n },\n };\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"bundler-DCGtF4jP.cjs","names":["getPackageName","isBareModuleSpecifier","isExternalProtocolImport","getPackageName","isExternalProtocolImport","removeDeployer","t","removeDeployerBabelPlugin","isDependencyPartOfPackage","slash","getNodeResolveOptions"],"sources":["../src/build/plugins/esbuild.ts","../src/build/plugins/esm-shim.ts","../src/build/plugins/local-storage-detector.ts","../src/build/package-info.ts","../src/build/plugins/node-modules-extension-resolver.ts","../src/build/plugins/protocol-external-resolver.ts","../src/build/babel/remove-deployer.ts","../src/build/plugins/remove-deployer.ts","../src/build/plugins/subpath-externals-resolver.ts","../src/build/plugins/tsconfig-paths.ts","../src/build/bundler.ts"],"sourcesContent":["import originalEsbuild from 'rollup-plugin-esbuild';\n\nexport function esbuild(options: Parameters<typeof originalEsbuild>[0] = {}) {\n return originalEsbuild({\n target: 'node20',\n platform: 'node',\n minify: false,\n ...options,\n });\n}\n","import originalEsmShim from '@rollup/plugin-esm-shim';\nimport type { Plugin } from 'rollup';\n\n// Regex to detect DECLARATIONS of __filename, __dirname\n// Using non-capturing group (?:) for slightly better performance\nconst FilenameDeclarationRegex = /(?:const|let|var)\\s+__filename/;\nconst DirnameDeclarationRegex = /(?:const|let|var)\\s+__dirname/;\n\n/**\n * Custom ESM shim plugin wrapper that respects user-declared __filename/__dirname variables.\n *\n * The original @rollup/plugin-esm-shim would inject shims even when users had already declared\n * their own __filename/__dirname, causing \"Identifier '__filename' has already been declared\" errors.\n *\n * This wrapper checks if the user has already declared these variables and skips the shim injection\n * if so. If either variable is declared, we skip the shim entirely since the original plugin injects\n * both together and we assume users who declare one will also handle the other if needed.\n */\nexport function esmShim(): Plugin {\n const original = originalEsmShim();\n\n return {\n name: 'esm-shim',\n renderChunk(code, chunk, opts, meta) {\n // Fast path: use includes() first to avoid regex if identifiers aren't present\n const hasFilename = code.includes('__filename');\n const hasDirname = code.includes('__dirname');\n\n // If user declared either __filename or __dirname, skip shim injection entirely\n // since the original plugin injects both together\n const userDeclaredFilename = hasFilename && FilenameDeclarationRegex.test(code);\n const userDeclaredDirname = hasDirname && DirnameDeclarationRegex.test(code);\n\n if (userDeclaredFilename || userDeclaredDirname) {\n return null;\n }\n\n // Otherwise, delegate to the original plugin\n if (typeof original.renderChunk === 'function') {\n return original.renderChunk.call(this, code, chunk, opts, meta);\n }\n\n return null;\n },\n };\n}\n\nexport default esmShim;\n","import type { Plugin } from 'rollup';\n\n/**\n * Connection-string-shaped patterns that resolve to the build host and will\n * never work inside the deploy container.\n */\nconst LOCAL_HOST_PATTERNS: Array<{ pattern: RegExp; hint: string }> = [\n {\n pattern: /\\bfile:\\.{1,2}\\/[^\\s'\"`]+\\.(?:db|sqlite)\\b/gi,\n hint: 'LibSQL/SQLite file path relative to the build host',\n },\n {\n pattern: /\\b(?:postgres(?:ql)?|mysql|mongodb|redis|libsql):\\/\\/[^/\\s'\"`]*localhost\\b/gi,\n hint: 'localhost in a connection string',\n },\n {\n pattern: /\\b(?:postgres(?:ql)?|mysql|mongodb|redis|libsql):\\/\\/[^/\\s'\"`]*127\\.0\\.0\\.1\\b/g,\n hint: '127.0.0.1 in a connection string',\n },\n];\n\nexport interface LocalStorageDetection {\n value: string;\n hint: string;\n module: string;\n /**\n * Name of the env var that guards this literal at runtime, when the\n * literal is the fallback arm of a `process.env.X || literal` (or `??`)\n * expression. The CLI preflight uses this to suppress or soften the\n * error when the guarding var is present in the deploy env.\n */\n guardedBy?: string;\n}\n\n/**\n * Unified preflight metadata emitted as `preflight-metadata.json`.\n * Superset of the legacy `preflight-local-paths.json` (which stays emitted\n * for one release so older CLIs keep working with newer deployers).\n */\nexport interface PreflightMetadata {\n version: 1;\n localPaths: LocalStorageDetection[];\n userEnvRefs: string[];\n}\n\n/**\n * Everything under `.mastra/.build/` is deployer-generated pre-bundled\n * dependency code (`@mastra__*.mjs` shims and their shared `chunk-*.mjs`\n * files), never user-authored. These preserve JSDoc examples from the\n * original library source (e.g. `LibSQLStore({ url: 'file:./data.db' })`)\n * which would otherwise trip the host-local detector, and their env var\n * reads are library refs that must not count as user references.\n */\nconst MASTRA_BUILD_DIR = /[\\\\/]\\.mastra[\\\\/]\\.build[\\\\/]/;\n\nconst PROCESS_ENV_DOT = /\\bprocess\\.env\\.([A-Z_][A-Z0-9_]*)\\b/g;\nconst PROCESS_ENV_BRACKET = /\\bprocess\\.env\\[['\"]([A-Z_][A-Z0-9_]*)['\"]\\]/g;\n\n/** Names of the metadata assets emitted into the output dir. */\n// TODO(preflight-metadata): stop emitting the legacy file in the next minor\n// after @mastra/deployer 1.50 — every CLI released alongside 1.50+ reads\n// preflight-metadata.json. Also remove the legacy fallback in the CLI's\n// deploy-preflight.ts at the same time.\nconst LEGACY_LOCAL_PATHS_FILE = 'preflight-local-paths.json';\nconst PREFLIGHT_METADATA_FILE = 'preflight-metadata.json';\n\ninterface ModuleMatch {\n value: string;\n hint: string;\n guardedBy?: string;\n}\n\nfunction collectEnvRefs(code: string): Set<string> {\n const refs = new Set<string>();\n for (const m of code.matchAll(PROCESS_ENV_DOT)) refs.add(m[1]!);\n for (const m of code.matchAll(PROCESS_ENV_BRACKET)) refs.add(m[1]!);\n return refs;\n}\n\n/* ------------------------------------------------------------------ */\n/* AST guard analysis */\n/* ------------------------------------------------------------------ */\n\ninterface AstNode {\n type: string;\n [key: string]: unknown;\n}\n\nfunction isAstNode(v: unknown): v is AstNode {\n return typeof v === 'object' && v !== null && typeof (v as AstNode).type === 'string';\n}\n\nfunction walkAst(node: AstNode, visit: (node: AstNode) => void): void {\n visit(node);\n for (const value of Object.values(node)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n if (isAstNode(item)) walkAst(item, visit);\n }\n } else if (isAstNode(value)) {\n walkAst(value, visit);\n }\n }\n}\n\n/** Find the first `process.env.X` / `process.env['X']` read inside an expression. */\nfunction findFirstEnvRef(node: AstNode): string | undefined {\n let found: string | undefined;\n walkAst(node, n => {\n if (found !== undefined) return;\n if (n.type !== 'MemberExpression') return;\n const object = n.object as AstNode | undefined;\n if (\n !object ||\n object.type !== 'MemberExpression' ||\n (object.object as AstNode | undefined)?.type !== 'Identifier' ||\n ((object.object as AstNode).name as string) !== 'process' ||\n (object.property as AstNode | undefined)?.type !== 'Identifier' ||\n ((object.property as AstNode).name as string) !== 'env'\n ) {\n return;\n }\n const property = n.property as AstNode | undefined;\n if (property?.type === 'Identifier' && !n.computed) {\n found = property.name as string;\n } else if (property?.type === 'Literal' && typeof property.value === 'string') {\n found = property.value;\n }\n });\n return found;\n}\n\n/**\n * Parse a module and figure out, for each detected local-path value, whether\n * every string literal containing it is the fallback arm of a\n * `process.env.X || <literal>` / `??` expression. Returns a map from\n * detected value to guarding env var name. Values with any unguarded\n * occurrence (or inconsistent guards) are absent — the CLI then errors as\n * before, which is the safe default.\n */\nfunction findGuardedValues(ast: AstNode, values: Set<string>): Map<string, string> {\n const stringLiterals: AstNode[] = [];\n const guardedLiterals = new Map<AstNode, string>();\n\n walkAst(ast, node => {\n if (node.type === 'Literal' && typeof node.value === 'string') {\n stringLiterals.push(node);\n return;\n }\n if (node.type === 'LogicalExpression' && (node.operator === '||' || node.operator === '??')) {\n const right = node.right as AstNode | undefined;\n if (right?.type === 'Literal' && typeof right.value === 'string') {\n const envName = findFirstEnvRef(node.left as AstNode);\n if (envName) guardedLiterals.set(right, envName);\n }\n }\n });\n\n const result = new Map<string, string>();\n for (const value of values) {\n const containing = stringLiterals.filter(lit => (lit.value as string).includes(value));\n if (containing.length === 0) continue;\n const guards = containing.map(lit => guardedLiterals.get(lit));\n const first = guards[0];\n if (first !== undefined && guards.every(g => g === first)) {\n result.set(value, first);\n }\n }\n return result;\n}\n\n/**\n * Rollup plugin that detects host-local storage URLs (e.g. `file:./mastra.db`,\n * `postgres://localhost`) in **user source modules** during bundling, and\n * collects the env vars user code reads via `process.env.X`.\n *\n * Only modules outside `node_modules` (and the deployer's own\n * `.mastra/.build/` pre-bundled files) are inspected, so library code\n * (like Agent Builder prompt templates or JSDoc examples in `@mastra/core`)\n * is naturally excluded. When `rootDir` is given, modules outside it are\n * also excluded — symlinked dependencies (pnpm `link:`/`file:`) resolve to\n * real paths that never contain `node_modules`. Tree-shaken modules are\n * excluded via\n * `generateBundle` — only modules that actually contribute rendered code to\n * the output are reported.\n *\n * When a detected literal is the fallback arm of a `process.env.X || literal`\n * expression, `guardedBy: \"X\"` is recorded so the CLI preflight can apply\n * deploy-time env context instead of hard-erroring on a dead fallback.\n *\n * Two assets are emitted into the output directory for the CLI preflight:\n * - `preflight-metadata.json` — unified metadata (local paths + user env refs)\n * - `preflight-local-paths.json` — legacy shape, kept for one release so an\n * older globally-installed CLI paired with a newer project-local deployer\n * doesn't lose the LOCAL_STORAGE_PATH check.\n */\nexport function localStorageDetector(rootDir?: string): Plugin {\n const userModuleMatches = new Map<string, ModuleMatch[]>();\n const userModuleEnvRefs = new Map<string, Set<string>>();\n let normalizedRoot: string | undefined;\n if (rootDir) {\n let root = rootDir.replace(/\\\\/g, '/');\n while (root.endsWith('/')) root = root.slice(0, -1);\n normalizedRoot = root + '/';\n }\n\n return {\n name: 'mastra-local-storage-detector',\n\n transform(_code, id) {\n if (id.includes('node_modules')) return null;\n if (MASTRA_BUILD_DIR.test(id)) return null;\n // Modules outside the project/workspace root are dependencies resolved\n // through symlinks (pnpm `link:`, `file:`, monorepo dev setups) whose\n // real path escapes `node_modules` — library code, not user code.\n if (normalizedRoot && !id.replace(/\\\\/g, '/').startsWith(normalizedRoot)) return null;\n\n const refs = collectEnvRefs(_code);\n if (refs.size > 0) {\n userModuleEnvRefs.set(id, refs);\n }\n\n const matches: ModuleMatch[] = [];\n for (const { pattern, hint } of LOCAL_HOST_PATTERNS) {\n const re = new RegExp(pattern.source, pattern.flags.includes('g') ? pattern.flags : pattern.flags + 'g');\n for (const m of _code.matchAll(re)) {\n matches.push({ value: m[0], hint });\n }\n }\n\n if (matches.length > 0) {\n // Best-effort structural pass: a parse failure (or a non-Rollup test\n // context without `this.parse`) simply means no `guardedBy`, which\n // preserves the previous always-error behavior.\n try {\n const ast = this.parse(_code) as unknown as AstNode;\n const guarded = findGuardedValues(ast, new Set(matches.map(m => m.value)));\n for (const match of matches) {\n const guardedBy = guarded.get(match.value);\n if (guardedBy) match.guardedBy = guardedBy;\n }\n } catch {\n // ignore — fall back to unguarded detections\n }\n\n userModuleMatches.set(id, matches);\n }\n\n return null;\n },\n\n generateBundle(_, bundle) {\n const detections: LocalStorageDetection[] = [];\n const seen = new Set<string>();\n const userEnvRefs = new Set<string>();\n\n for (const chunk of Object.values(bundle)) {\n if (chunk.type !== 'chunk') continue;\n\n for (const [moduleId, moduleInfo] of Object.entries(chunk.modules)) {\n if (moduleInfo.renderedLength === 0) continue;\n\n for (const ref of userModuleEnvRefs.get(moduleId) ?? []) {\n userEnvRefs.add(ref);\n }\n\n const matches = userModuleMatches.get(moduleId);\n if (!matches) continue;\n\n for (const { value, hint, guardedBy } of matches) {\n const key = `${hint}::${value}`;\n if (seen.has(key)) continue;\n seen.add(key);\n\n detections.push({ value, hint, module: moduleId, ...(guardedBy ? { guardedBy } : {}) });\n }\n }\n }\n\n const metadata: PreflightMetadata = {\n version: 1,\n localPaths: detections,\n userEnvRefs: [...userEnvRefs].sort(),\n };\n\n this.emitFile({\n type: 'asset',\n fileName: PREFLIGHT_METADATA_FILE,\n source: JSON.stringify(metadata),\n });\n\n // Legacy asset — shape unchanged (no `guardedBy`) for older CLIs.\n this.emitFile({\n type: 'asset',\n fileName: LEGACY_LOCAL_PATHS_FILE,\n source: JSON.stringify(detections.map(({ value, hint, module }) => ({ value, hint, module }))),\n });\n },\n };\n}\n","/**\n * Note: This function depends on local-pkg and should only be used at build-time.\n * It is in a separate file to avoid including local-pkg in runtime code.\n */\n\nimport { statSync } from 'node:fs';\nimport { dirname } from 'node:path';\nimport { fileURLToPath, pathToFileURL } from 'node:url';\nimport { readJSON } from 'fs-extra/esm';\nimport { getPackageInfo } from 'local-pkg';\nimport { getPackageName } from './utils';\n\n/**\n * Normalize a resolution base path to a directory file URL.\n *\n * Callers often pass a module file path (e.g. a rollup module id like\n * `node_modules/@mastra/core/dist/chunk-XYZ.js`) as the parent path. mlly (used by local-pkg)\n * also treats each resolution base as a directory candidate (`<base>/_index.js`), which makes it\n * try to read `<file>/package.json`. That fails with ENOTDIR, which mlly does not tolerate\n * (only ENOENT) and local-pkg then logs the raw error to the console. Using the file's directory\n * as the base avoids this while resolving identically.\n */\nfunction toParentDirectoryUrl(parentPath: string): string {\n let fsPath = parentPath.startsWith('file://') ? fileURLToPath(parentPath) : parentPath;\n\n try {\n if (statSync(fsPath).isFile()) {\n fsPath = dirname(fsPath);\n }\n } catch {\n // non-existent paths are used as-is\n }\n\n return pathToFileURL(fsPath).href;\n}\n\n/**\n * Get package root path\n */\nexport async function getPackageRootPath(packageName: string, parentPath?: string): Promise<string | null> {\n let rootPath: string | null;\n\n try {\n let options: { paths?: string[] } | undefined = undefined;\n if (parentPath) {\n options = {\n paths: [toParentDirectoryUrl(parentPath)],\n };\n }\n\n const pkg = await getPackageInfo(packageName, options);\n rootPath = pkg?.rootPath ?? null;\n } catch {\n rootPath = null;\n }\n\n return rootPath;\n}\n\nasync function readPackageMetadata(\n rootPath: string,\n requestedPackageName: string | null,\n): Promise<{ rootPath: string; version?: string; packageSpec?: string }> {\n try {\n const pkgJson = await readJSON(`${rootPath}/package.json`);\n const version = pkgJson.version;\n const actualPackageName = pkgJson.name;\n const packageSpec =\n version && actualPackageName && requestedPackageName && requestedPackageName !== actualPackageName\n ? `npm:${actualPackageName}@${version}`\n : undefined;\n\n return { rootPath, version, packageSpec };\n } catch {\n return { rootPath };\n }\n}\n\nexport async function getPackageMetadata(\n packageName: string,\n parentPath?: string,\n): Promise<{ rootPath: string | null; version?: string; packageSpec?: string }> {\n const requestedPackageName = getPackageName(packageName);\n const packageNames = [...new Set([packageName, requestedPackageName].filter(Boolean) as string[])];\n let firstRootPath: string | null = null;\n\n for (const name of packageNames) {\n const rootPath = await getPackageRootPath(name, parentPath);\n firstRootPath ??= rootPath;\n if (!rootPath) {\n continue;\n }\n\n const metadata = await readPackageMetadata(rootPath, requestedPackageName ?? null);\n if (metadata.version || metadata.packageSpec) {\n return metadata;\n }\n }\n\n return { rootPath: firstRootPath };\n}\n","import { readFile } from 'node:fs/promises';\nimport { join, isAbsolute } from 'node:path';\nimport nodeResolve from '@rollup/plugin-node-resolve';\nimport type { Plugin } from 'rollup';\nimport type { PackageJson } from 'type-fest';\nimport { getPackageRootPath } from '../package-info';\nimport { getPackageName, isExternalProtocolImport, isBareModuleSpecifier } from '../utils';\n\n/**\n * Check if a package has an exports field in its package.json.\n * Results are cached to avoid repeated filesystem reads.\n */\nasync function getPackageJSON(pkgName: string, importer: string): Promise<PackageJson> {\n const pkgRoot = await getPackageRootPath(pkgName, importer);\n if (!pkgRoot) {\n throw new Error(`Package ${pkgName} not found`);\n }\n\n const pkgJSON = JSON.parse(await readFile(join(pkgRoot, 'package.json'), 'utf-8')) as PackageJson;\n return pkgJSON;\n}\n\n/**\n * Rollup plugin that resolves module extensions for external dependencies.\n *\n * This plugin handles ESM compatibility for external imports when node-resolve is not used:\n * - Packages WITH exports field (e.g., hono, date-fns): Keep imports as-is or strip redundant extensions\n * - Packages WITHOUT exports field (e.g., lodash): Add .js extension for direct file imports\n */\nexport function nodeModulesExtensionResolver(): Plugin {\n // Create a single instance of node-resolve to reuse\n const nodeResolvePlugin = nodeResolve();\n\n return {\n name: 'node-modules-extension-resolver',\n async resolveId(id, importer, options) {\n // Only bare package imports are relevant here.\n if (!importer || !isBareModuleSpecifier(id) || isExternalProtocolImport(id) || isAbsolute(id)) {\n return null;\n }\n\n // Skip direct package imports (e.g., 'lodash', '@mastra/core')\n const parts = id.split('/');\n const isScoped = id.startsWith('@');\n if ((isScoped && parts.length === 2) || (!isScoped && parts.length === 1)) {\n return null;\n }\n\n const pkgName = getPackageName(id);\n if (!pkgName) {\n return null;\n }\n\n try {\n const packageJSON = await getPackageJSON(pkgName, importer);\n // if it has exports, node should be able to rsolve it, if not the exports map is wrong.\n if (!!packageJSON.exports) {\n return null;\n }\n\n const packageRoot = await getPackageRootPath(pkgName, importer);\n // @ts-expect-error - handle is part of resolveId signature\n const nodeResolved = await nodeResolvePlugin.resolveId?.handler?.call(this, id, importer, options);\n // if we cannot resolve it, it's not a valid import so we let node handle it\n if (!nodeResolved?.id) {\n return null;\n }\n\n let filePath = nodeResolved.id;\n if (nodeResolved.resolvedBy === 'commonjs--resolver') {\n filePath = filePath.substring(1).split('?')[0];\n }\n\n const resolvedImportPath = filePath.replace(packageRoot, pkgName);\n\n return {\n id: resolvedImportPath,\n external: true,\n };\n } catch {\n return null;\n }\n },\n };\n}\n","import type { Plugin } from 'rollup';\nimport { isExternalProtocolImport } from '../utils';\n\nexport function protocolExternalResolver({ exclude = ['node:'] }: { exclude?: readonly string[] } = {}): Plugin {\n return {\n name: 'protocol-external-resolver',\n resolveId(id) {\n if (!isExternalProtocolImport(id, exclude)) {\n return null;\n }\n\n return {\n id,\n external: true,\n };\n },\n } satisfies Plugin;\n}\n","import { types as t } from '@babel/core';\nimport type { NodePath, PluginObject, PluginPass } from '@babel/core';\n\ninterface RemoveDeployerState extends PluginPass {\n hasReplaced?: boolean;\n}\n\nexport function removeDeployer(): PluginObject<RemoveDeployerState> {\n // Helper to remove deployer property from an object and clean up its binding\n function removeDeployerFromObject(\n objectExpr: t.ObjectExpression,\n scope: { getBinding: (name: string) => { path?: NodePath } | undefined },\n ): t.ObjectProperty | undefined {\n const deployerProp = objectExpr.properties.find(\n prop => t.isObjectProperty(prop) && t.isIdentifier(prop.key) && prop.key.name === 'deployer',\n ) as t.ObjectProperty | undefined;\n\n if (deployerProp) {\n objectExpr.properties = objectExpr.properties.filter(prop => prop !== deployerProp);\n\n // Clean up the deployer binding if it's a reference\n if (t.isIdentifier(deployerProp.value)) {\n const deployerBinding = scope.getBinding(deployerProp.value.name);\n if (deployerBinding) {\n deployerBinding.path?.parentPath?.remove();\n }\n }\n }\n\n return deployerProp;\n }\n\n return {\n name: 'remove-deployer',\n visitor: {\n NewExpression(path, state: RemoveDeployerState) {\n // is a variable declaration\n const varDeclaratorPath = path.findParent(path => t.isVariableDeclarator(path.node));\n if (!varDeclaratorPath) {\n return;\n }\n\n const parentNode = path.parentPath.node;\n // check if it's a const of mastra\n if (!t.isVariableDeclarator(parentNode) || !t.isIdentifier(parentNode.id) || parentNode.id.name !== 'mastra') {\n return;\n }\n\n if (!state.hasReplaced) {\n state.hasReplaced = true;\n const newMastraObj = t.cloneNode(path.node);\n if (t.isObjectExpression(newMastraObj.arguments[0]) && newMastraObj.arguments[0].properties?.length) {\n const objectArg = newMastraObj.arguments[0];\n let foundDeployer = false;\n\n // First, check for direct deployer property\n const directDeployer = removeDeployerFromObject(objectArg, state.file.scope);\n if (directDeployer) {\n foundDeployer = true;\n }\n\n // Then, check spread elements for deployer properties\n for (const prop of objectArg.properties) {\n if (t.isSpreadElement(prop) && t.isIdentifier(prop.argument)) {\n const spreadBinding = state.file.scope.getBinding(prop.argument.name);\n if (spreadBinding?.path && t.isVariableDeclarator(spreadBinding.path.node)) {\n const init = spreadBinding.path.node.init;\n if (t.isObjectExpression(init)) {\n const spreadDeployer = removeDeployerFromObject(init, state.file.scope);\n if (spreadDeployer) {\n foundDeployer = true;\n }\n }\n }\n }\n }\n\n if (foundDeployer) {\n path.replaceWith(newMastraObj);\n }\n }\n }\n },\n },\n } as PluginObject<RemoveDeployerState>;\n}\n","import { transformAsync } from '@babel/core';\nimport type { Plugin, SourceMapInput } from 'rollup';\n\nimport { removeDeployer as removeDeployerBabelPlugin } from '../babel/remove-deployer';\n\nexport function removeDeployer(mastraEntry: string, options?: { sourcemap?: boolean }): Plugin {\n return {\n name: 'remove-deployer',\n transform(code, id) {\n if (id !== mastraEntry) {\n return;\n }\n\n return transformAsync(code, {\n babelrc: false,\n configFile: false,\n filename: id,\n plugins: [removeDeployerBabelPlugin],\n sourceMaps: options?.sourcemap,\n }).then(result => ({\n code: result!.code!,\n map: result!.map! as SourceMapInput,\n }));\n },\n } satisfies Plugin;\n}\n","import type { Plugin } from 'rollup';\nimport { isDependencyPartOfPackage } from '../utils';\n\nexport function subpathExternalsResolver(externals: string[]): Plugin {\n return {\n name: 'subpath-externals-resolver',\n resolveId(id) {\n if (id.startsWith('.') || id.startsWith('/')) {\n return null;\n }\n\n const isPartOfExternals = externals.some(external => isDependencyPartOfPackage(id, external));\n if (isPartOfExternals) {\n return {\n id,\n external: true,\n };\n }\n },\n } satisfies Plugin;\n}\n","import fs from 'node:fs';\nimport path, { normalize } from 'node:path';\nimport type { Plugin } from 'rollup';\nimport stripJsonComments from 'strip-json-comments';\nimport type { RegisterOptions } from 'typescript-paths';\nimport { createHandler } from 'typescript-paths';\n\nconst PLUGIN_NAME = 'tsconfig-paths';\nconst JS_IMPORT_SOURCE_EXTENSIONS = ['.ts', '.tsx', '.js', '.jsx'];\n\nexport type PluginOptions = Omit<RegisterOptions, 'loggerID'> & { localResolve?: boolean };\n\n/**\n * Check if a tsconfig file has path mappings configured.\n * Exported for testing purposes.\n *\n * @param tsConfigPath - Path to the tsconfig.json file\n * @returns true if the tsconfig has paths configured or extends another config, false otherwise\n */\nexport function hasPaths(tsConfigPath: string): boolean {\n try {\n const content = fs.readFileSync(tsConfigPath, 'utf8');\n const config = JSON.parse(stripJsonComments(content));\n return !!(\n (config.compilerOptions?.paths && Object.keys(config.compilerOptions.paths).length > 0) ||\n (typeof config.extends === 'string' && config.extends.length > 0) ||\n (Array.isArray(config.extends) && config.extends.length > 0)\n );\n } catch {\n return false;\n }\n}\n\nexport function tsConfigPaths({ tsConfigPath, respectCoreModule, localResolve }: PluginOptions = {}): Plugin {\n const handlerCache = new Map<string, ReturnType<typeof createHandler>>();\n\n function resolveJsImportToSourceFile(moduleName: string): string {\n if (fs.existsSync(moduleName)) {\n return moduleName;\n }\n\n const parsed = path.parse(moduleName);\n if (parsed.ext !== '.js') {\n return moduleName;\n }\n\n for (const extension of JS_IMPORT_SOURCE_EXTENSIONS) {\n const candidate = path.join(parsed.dir, `${parsed.name}${extension}`);\n if (fs.existsSync(candidate)) {\n return candidate;\n }\n }\n\n return moduleName;\n }\n\n // Find tsconfig.json file starting from a directory and walking up\n function findTsConfigForFile(filePath: string): string | null {\n let currentDir = path.dirname(filePath);\n const root = path.parse(currentDir).root;\n\n while (currentDir !== root) {\n const tsConfigPath = path.join(currentDir, 'tsconfig.json');\n\n if (fs.existsSync(tsConfigPath)) {\n // Check if this tsconfig has path mappings\n if (hasPaths(tsConfigPath)) {\n return tsConfigPath;\n }\n }\n\n // Also check for tsconfig.base.json (common in NX)\n const tsConfigBasePath = path.join(currentDir, 'tsconfig.base.json');\n if (fs.existsSync(tsConfigBasePath)) {\n if (hasPaths(tsConfigBasePath)) {\n return tsConfigBasePath;\n }\n }\n\n currentDir = path.dirname(currentDir);\n }\n\n return null;\n }\n\n // Get or create handler for a specific tsconfig file\n function getHandlerForFile(filePath: string): ReturnType<typeof createHandler> | null {\n // If a specific tsConfigPath was provided, use it\n if (tsConfigPath && typeof tsConfigPath === 'string') {\n if (!handlerCache.has(tsConfigPath)) {\n handlerCache.set(\n tsConfigPath,\n createHandler({\n log: () => {},\n tsConfigPath,\n respectCoreModule,\n falllback: moduleName => fs.existsSync(moduleName),\n }),\n );\n }\n return handlerCache.get(tsConfigPath)!;\n }\n\n // Find appropriate tsconfig for this file\n const configPath = findTsConfigForFile(filePath);\n if (!configPath) {\n return null;\n }\n\n // Cache handlers to avoid recreation\n if (!handlerCache.has(configPath)) {\n handlerCache.set(\n configPath,\n createHandler({\n log: () => {},\n tsConfigPath: configPath,\n respectCoreModule,\n falllback: moduleName => fs.existsSync(moduleName),\n }),\n );\n }\n\n return handlerCache.get(configPath)!;\n }\n\n // Simple alias resolution using dynamic handler\n function resolveAlias(request: string, importer: string): string | null | undefined {\n // Get the appropriate handler for this file\n const dynamicHandler = getHandlerForFile(importer);\n if (!dynamicHandler) {\n return null;\n }\n\n const resolved = dynamicHandler(request, normalize(importer));\n return resolved;\n }\n\n return {\n name: PLUGIN_NAME,\n resolveId: {\n order: 'pre',\n async handler(request, importer, options) {\n if (!importer || request.startsWith('\\0') || importer.charCodeAt(0) === 0) {\n return null;\n }\n\n // Convert relative paths to absolute to ensure proper tsconfig path resolution\n // This allows path aliases to work regardless of how the importer path is provided\n if (!path.isAbsolute(importer)) {\n importer = path.resolve(process.cwd(), importer);\n }\n\n const moduleName = resolveAlias(request, importer);\n // No tsconfig alias found, so we need to resolve it normally\n if (!moduleName) {\n const resolved = await this.resolve(request, importer, { skipSelf: true, ...options });\n if (!resolved) {\n return null;\n }\n\n // If localResolve is true, we need to check if the importer has been resolved by the tsconfig-paths plugin\n // if so, we need to resolve the request from the importer instead of the root and mark it as external\n if (localResolve) {\n const importerInfo = this.getModuleInfo(importer);\n const importerPluginMeta = importerInfo?.meta?.[PLUGIN_NAME];\n\n if (!request.startsWith('./') && !request.startsWith('../') && importerPluginMeta?.resolved) {\n return {\n ...resolved,\n external: !request.startsWith('hono/') && request !== 'hono',\n };\n }\n }\n\n return {\n ...resolved,\n meta: {\n ...(resolved.meta || {}),\n },\n };\n }\n\n const resolvedModuleName = resolveJsImportToSourceFile(moduleName);\n\n // When a module does not have an extension, we need to resolve it to a file\n if (!path.extname(resolvedModuleName)) {\n const resolved = await this.resolve(resolvedModuleName, importer, { skipSelf: true, ...options });\n\n if (!resolved) {\n return null;\n }\n\n return {\n ...resolved,\n meta: {\n ...resolved.meta,\n [PLUGIN_NAME]: {\n resolved: true,\n },\n },\n };\n }\n\n // Always pass through bundler's resolution to ensure proper path normalization\n const resolved = await this.resolve(resolvedModuleName, importer, { skipSelf: true, ...options });\n\n if (!resolved) {\n return null;\n }\n\n return {\n ...resolved,\n meta: {\n ...resolved.meta,\n [PLUGIN_NAME]: {\n resolved: true,\n },\n },\n };\n },\n },\n } satisfies Plugin;\n}\n","import { join } from 'node:path';\nimport { fileURLToPath, pathToFileURL } from 'node:url';\nimport { optimizeLodashImports } from '@optimize-lodash/rollup-plugin';\nimport alias from '@rollup/plugin-alias';\nimport commonjs from '@rollup/plugin-commonjs';\nimport json from '@rollup/plugin-json';\nimport nodeResolve from '@rollup/plugin-node-resolve';\nimport { rollup } from 'rollup';\nimport type { InputOptions, OutputOptions, Plugin } from 'rollup';\nimport { minify as esbuildMinify } from 'rollup-plugin-esbuild';\nimport type { WorkspacePackageInfo } from '../bundler/workspaceDependencies';\nimport { esbuild } from './plugins/esbuild';\nimport { esmShim } from './plugins/esm-shim';\nimport { localStorageDetector } from './plugins/local-storage-detector';\nimport { nodeModulesExtensionResolver } from './plugins/node-modules-extension-resolver';\nimport { protocolExternalResolver } from './plugins/protocol-external-resolver';\nimport { removeDeployer } from './plugins/remove-deployer';\nimport { subpathExternalsResolver } from './plugins/subpath-externals-resolver';\nimport { tsConfigPaths } from './plugins/tsconfig-paths';\nimport type { ExternalDependencyInfo } from './types';\nimport { getNodeResolveOptions, slash } from './utils';\nimport type { BundlerPlatform } from './utils';\n\nexport function mastraInternalAliasPlugin(entryFile: string): Plugin {\n const normalizedEntryFile = slash(entryFile);\n\n return alias({\n entries: [\n {\n find: /^\\#server$/,\n replacement: slash(fileURLToPath(import.meta.resolve('@mastra/deployer/server'))),\n },\n {\n find: /^\\@mastra\\/server\\/(.*)/,\n replacement: `@mastra/server/$1`,\n customResolver: id => {\n if (id.startsWith('@mastra/server')) {\n return {\n id: fileURLToPath(import.meta.resolve(id)),\n };\n }\n },\n },\n { find: /^\\#mastra$/, replacement: normalizedEntryFile },\n ],\n });\n}\n\nexport function mastraToolsAliasPlugin(): Plugin {\n return {\n name: 'tools-rewriter',\n resolveId(id: string) {\n if (id === '#tools') {\n return {\n id: './tools.mjs',\n external: true,\n };\n }\n },\n };\n}\n\nexport async function getInputOptions(\n entryFile: string,\n analyzedBundleInfo: {\n dependencies: Map<string, string>;\n externalDependencies: Map<string, ExternalDependencyInfo>;\n workspaceMap: Map<string, WorkspacePackageInfo>;\n projectType?: string;\n },\n platform: BundlerPlatform,\n env: Record<string, string> = { 'process.env.NODE_ENV': JSON.stringify('production') },\n {\n sourcemap = false,\n minify = false,\n isDev = false,\n projectRoot,\n workspaceRoot = undefined,\n enableEsmShim = true,\n externalsPreset = false,\n }: {\n sourcemap?: boolean;\n minify?: boolean;\n isDev?: boolean;\n workspaceRoot?: string;\n projectRoot: string;\n enableEsmShim?: boolean;\n externalsPreset?: boolean;\n },\n): Promise<InputOptions> {\n const nodeResolvePlugin = nodeResolve(getNodeResolveOptions(platform));\n\n const externalsCopy = new Set<string>(analyzedBundleInfo.externalDependencies.keys());\n const externals = externalsPreset ? [] : Array.from(externalsCopy);\n\n return {\n logLevel: process.env.MASTRA_BUNDLER_DEBUG === 'true' ? 'debug' : 'silent',\n treeshake: 'smallest',\n preserveSymlinks: true,\n external: externals,\n plugins: [\n protocolExternalResolver(),\n subpathExternalsResolver(externals),\n {\n name: 'alias-optimized-deps',\n resolveId(id: string) {\n if (!analyzedBundleInfo.dependencies.has(id)) {\n return null;\n }\n\n const filename = analyzedBundleInfo.dependencies.get(id)!;\n const absolutePath = join(workspaceRoot || projectRoot, filename);\n\n // During `mastra dev` we want to keep deps as external\n if (isDev) {\n return {\n id: process.platform === 'win32' ? pathToFileURL(absolutePath).href : absolutePath,\n external: true,\n };\n }\n\n // For production builds return the absolute path as-is so Rollup can handle itself\n return {\n id: absolutePath,\n external: false,\n };\n },\n } satisfies Plugin,\n mastraInternalAliasPlugin(entryFile),\n tsConfigPaths(),\n mastraToolsAliasPlugin(),\n esbuild({\n platform,\n define: env,\n }),\n optimizeLodashImports({\n include: '**/*.{js,ts,mjs,cjs}',\n }),\n externalsPreset\n ? null\n : commonjs({\n extensions: ['.js', '.ts'],\n transformMixedEsModules: true,\n esmExternals(id) {\n return externals.includes(id);\n },\n }),\n enableEsmShim ? esmShim() : undefined,\n externalsPreset ? nodeModulesExtensionResolver() : nodeResolvePlugin,\n // for debugging\n // {\n // name: 'logger',\n // //@ts-expect-error\n // resolveId(id, ...args) {\n // console.log({ id, args });\n // },\n // // @ts-expect-error\n // transform(code, id) {\n // if (code.includes('class Duplexify ')) {\n // console.log({ duplex: id });\n // }\n // },\n // },\n json(),\n localStorageDetector(workspaceRoot || projectRoot),\n removeDeployer(entryFile, { sourcemap }),\n // treeshake unused imports\n esbuild({\n include: entryFile,\n platform,\n }),\n // Runs at renderChunk, so the emitted chunks are minified as a whole rather\n // than module by module. Last in the list so nothing transforms after it.\n // `sourceMap` follows the build's own setting: the plugin defaults it to true,\n // which would build a map Rollup then discards on a non-sourcemap build.\n minify ? esbuildMinify({ target: 'node20', sourceMap: sourcemap }) : null,\n ].filter(Boolean),\n } satisfies InputOptions;\n}\n\nexport async function createBundler(\n inputOptions: InputOptions,\n outputOptions: Partial<OutputOptions> & { dir: string },\n) {\n const bundler = await rollup(inputOptions);\n\n return {\n write: () => {\n return bundler.write({\n ...outputOptions,\n format: 'esm',\n entryFileNames: '[name].mjs',\n chunkFileNames: '[name].mjs',\n });\n },\n close: () => {\n return bundler.close();\n },\n };\n}\n"],"mappings":"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"}
|