@absolutejs/absolute 0.19.0-beta.1043 → 0.19.0-beta.1044
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/angular/browser.js +10358 -0
- package/dist/angular/browser.js.map +260 -0
- package/dist/angular/components/constants.js +101 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +58 -0
- package/dist/angular/components/core/streamingSlotRegistry.js +114 -0
- package/dist/angular/components/defer-slot-payload.js +6 -0
- package/dist/angular/components/defer-slot-templates.directive.js +44 -0
- package/dist/angular/components/defer-slot.component.js +152 -0
- package/dist/angular/components/image.component.js +202 -0
- package/dist/angular/components/index.js +4 -0
- package/dist/angular/components/stream-slot.component.js +102 -0
- package/dist/angular/hmrPreserveCore.ts +188 -0
- package/dist/angular/index.js +15793 -0
- package/dist/angular/index.js.map +299 -0
- package/dist/angular/server.js +6357 -0
- package/dist/angular/server.js.map +61 -0
- package/dist/build.js +27484 -0
- package/dist/build.js.map +146 -0
- package/dist/cli/config/client.js +527 -0
- package/dist/cli/config/server.js +37130 -0
- package/dist/cli/htmx/htmx.min.js +1 -0
- package/dist/cli/index.js +180130 -0
- package/dist/client/index.js +1267 -0
- package/dist/client/index.js.map +31 -0
- package/dist/core/streamingSlotRegistrar.js +138 -0
- package/dist/core/streamingSlotRegistrar.js.map +10 -0
- package/dist/core/streamingSlotRegistry.js +194 -0
- package/dist/core/streamingSlotRegistry.js.map +11 -0
- package/dist/dev/client/constants.ts +26 -0
- package/dist/dev/client/cssUtils.ts +311 -0
- package/dist/dev/client/domDiff.ts +226 -0
- package/dist/dev/client/domState.ts +423 -0
- package/dist/dev/client/domTracker.ts +61 -0
- package/dist/dev/client/errorOverlay.ts +445 -0
- package/dist/dev/client/frameworkDetect.ts +63 -0
- package/dist/dev/client/handlers/angularHmrShim.ts +88 -0
- package/dist/dev/client/handlers/angularRemount.ts +362 -0
- package/dist/dev/client/handlers/angularRemountWiring.ts +52 -0
- package/dist/dev/client/handlers/html.ts +364 -0
- package/dist/dev/client/handlers/htmx.ts +278 -0
- package/dist/dev/client/handlers/react.ts +108 -0
- package/dist/dev/client/handlers/rebuild.ts +153 -0
- package/dist/dev/client/handlers/svelte.ts +334 -0
- package/dist/dev/client/handlers/vue.ts +292 -0
- package/dist/dev/client/headPatch.ts +233 -0
- package/dist/dev/client/hmrClient.ts +352 -0
- package/dist/dev/client/hmrState.ts +14 -0
- package/dist/dev/client/hmrToast.ts +150 -0
- package/dist/dev/client/moduleVersions.ts +62 -0
- package/dist/dev/client/reactRefreshSetup.ts +31 -0
- package/dist/dev/client/vendor/lview/lViewOps.ts +196 -0
- package/dist/dev/client/vendor/lview/slotConstants.ts +44 -0
- package/dist/dev/client/vendor/reactRefreshRuntime.d.ts +12 -0
- package/dist/dev/client/vendor/reactRefreshRuntime.js +313 -0
- package/dist/image-client/imageClient.js +69 -0
- package/dist/index.js +36383 -0
- package/dist/index.js.map +320 -0
- package/dist/islands/browser.js +259 -0
- package/dist/islands/browser.js.map +15 -0
- package/dist/islands/index.js +2415 -0
- package/dist/islands/index.js.map +37 -0
- package/dist/react/browser.js +374 -0
- package/dist/react/browser.js.map +19 -0
- package/dist/react/components/browser/index.js +467 -0
- package/dist/react/components/index.js +684 -0
- package/dist/react/components/index.js.map +18 -0
- package/dist/react/hooks/index.js +285 -0
- package/dist/react/hooks/index.js.map +14 -0
- package/dist/react/index.js +4258 -0
- package/dist/react/index.js.map +56 -0
- package/dist/react/jsxDevRuntimeCompat.js +90 -0
- package/dist/react/jsxDevRuntimeCompat.js.map +10 -0
- package/dist/react/router/browser.js +95 -0
- package/dist/react/router/browser.js.map +10 -0
- package/dist/react/router/index.js +95 -0
- package/dist/react/router/index.js.map +10 -0
- package/dist/react/server.js +1895 -0
- package/dist/react/server.js.map +26 -0
- package/dist/src/angular/Island.browser.d.ts +34 -0
- package/dist/src/angular/Island.d.ts +29 -0
- package/dist/src/angular/angularDeps.d.ts +2 -0
- package/dist/src/angular/angularPatch.d.ts +1 -0
- package/dist/src/angular/animationProviders.d.ts +2 -0
- package/dist/src/angular/browser.d.ts +14 -0
- package/dist/src/angular/components/constants.d.ts +96 -0
- package/dist/src/angular/components/defer-slot-payload.d.ts +7 -0
- package/dist/src/angular/components/defer-slot-templates.directive.d.ts +21 -0
- package/dist/src/angular/components/defer-slot.component.d.ts +29 -0
- package/dist/src/angular/components/image.component.d.ts +42 -0
- package/dist/src/angular/components/index.d.ts +4 -0
- package/dist/src/angular/components/stream-slot.component.d.ts +20 -0
- package/dist/src/angular/composables/index.d.ts +6 -0
- package/dist/src/angular/composables/usePageContext.d.ts +16 -0
- package/dist/src/angular/composables/useResource.d.ts +57 -0
- package/dist/src/angular/composables/useSubscription.d.ts +33 -0
- package/dist/src/angular/composables/useTimers.d.ts +18 -0
- package/dist/src/angular/createIsland.browser.d.ts +2 -0
- package/dist/src/angular/createIsland.d.ts +2 -0
- package/dist/src/angular/deterministicEnv.d.ts +26 -0
- package/dist/src/angular/hmrPreserveCore.d.ts +21 -0
- package/dist/src/angular/httpTransferCache.d.ts +12 -0
- package/dist/src/angular/index.d.ts +14 -0
- package/dist/src/angular/injectorPatch.d.ts +1 -0
- package/dist/src/angular/islandStore.d.ts +9 -0
- package/dist/src/angular/islands.d.ts +4 -0
- package/dist/src/angular/lowerDeferSyntax.d.ts +18 -0
- package/dist/src/angular/lowerServerIslands.d.ts +1 -0
- package/dist/src/angular/pageHandler.d.ts +48 -0
- package/dist/src/angular/pendingTask.d.ts +1 -0
- package/dist/src/angular/preserveAcrossHmr.d.ts +12 -0
- package/dist/src/angular/renderIsland.d.ts +2 -0
- package/dist/src/angular/requestProviders.d.ts +5 -0
- package/dist/src/angular/resolveAngularPackage.d.ts +19 -0
- package/dist/src/angular/routerRedirectProviders.d.ts +6 -0
- package/dist/src/angular/server.d.ts +4 -0
- package/dist/src/angular/ssrRender.d.ts +13 -0
- package/dist/src/angular/ssrSanitizer.d.ts +3 -0
- package/dist/src/angular/staticAnalyzeSpaRoutes.d.ts +7 -0
- package/dist/src/build/angularLinkerPlugin.d.ts +29 -0
- package/dist/src/build/buildAngularVendor.d.ts +40 -0
- package/dist/src/build/buildDepVendor.d.ts +2 -0
- package/dist/src/build/buildEmberVendor.d.ts +24 -0
- package/dist/src/build/buildReactVendor.d.ts +8 -0
- package/dist/src/build/buildSvelteVendor.d.ts +6 -0
- package/dist/src/build/buildVueVendor.d.ts +6 -0
- package/dist/src/build/chainInlineSourcemaps.d.ts +13 -0
- package/dist/src/build/compileAngular.d.ts +40 -0
- package/dist/src/build/compileEmber.d.ts +43 -0
- package/dist/src/build/compileSvelte.d.ts +14 -0
- package/dist/src/build/compileTailwind.d.ts +5 -0
- package/dist/src/build/compileVue.d.ts +22 -0
- package/dist/src/build/externalAssetPlugin.d.ts +2 -0
- package/dist/src/build/generateManifest.d.ts +2 -0
- package/dist/src/build/generateReactIndexes.d.ts +2 -0
- package/dist/src/build/htmlScriptHMRPlugin.d.ts +13 -0
- package/dist/src/build/index.d.ts +2 -0
- package/dist/src/build/islandEntries.d.ts +32 -0
- package/dist/src/build/islandRegistryTransform.d.ts +17 -0
- package/dist/src/build/nativeRewrite.d.ts +5 -0
- package/dist/src/build/optimizeHtmlImages.d.ts +2 -0
- package/dist/src/build/outputLogs.d.ts +1 -0
- package/dist/src/build/parseAngularConfigImports.d.ts +9 -0
- package/dist/src/build/parseVueSpaRoutes.d.ts +20 -0
- package/dist/src/build/resolvePackageImport.d.ts +9 -0
- package/dist/src/build/rewriteImports.d.ts +8 -0
- package/dist/src/build/rewriteImportsPlugin.d.ts +48 -0
- package/dist/src/build/rewriteReactImports.d.ts +7 -0
- package/dist/src/build/runAngularHandlerScan.d.ts +7 -0
- package/dist/src/build/scanAngularHandlerCalls.d.ts +13 -0
- package/dist/src/build/scanAngularPageRoutes.d.ts +10 -0
- package/dist/src/build/scanConventions.d.ts +5 -0
- package/dist/src/build/scanCssEntryPoints.d.ts +1 -0
- package/dist/src/build/scanEntryPoints.d.ts +1 -0
- package/dist/src/build/scanRouteRegistrations.d.ts +23 -0
- package/dist/src/build/scanVueSsrOnlyPages.d.ts +6 -0
- package/dist/src/build/staticIslandPages.d.ts +9 -0
- package/dist/src/build/stylePreprocessor.d.ts +26 -0
- package/dist/src/build/tailwindCompiler.d.ts +8 -0
- package/dist/src/build/updateAssetPaths.d.ts +1 -0
- package/dist/src/build/vendorEntrySource.d.ts +1 -0
- package/dist/src/build/verifyAngularCoreUniqueness.d.ts +2 -0
- package/dist/src/build/vueAutoRouterTransform.d.ts +1 -0
- package/dist/src/build/wrapHTMLScript.d.ts +17 -0
- package/dist/src/build.d.ts +2 -0
- package/dist/src/cli/add/dependencies.d.ts +12 -0
- package/dist/src/cli/cache.d.ts +15 -0
- package/dist/src/cli/config/absolute/AbsoluteConfigPanel.d.ts +6 -0
- package/dist/src/cli/config/absolute/editAbsoluteConfig.d.ts +5 -0
- package/dist/src/cli/config/absolute/resolveAbsoluteConfig.d.ts +14 -0
- package/dist/src/cli/config/client.d.ts +1 -0
- package/dist/src/cli/config/configCert.d.ts +12 -0
- package/dist/src/cli/config/eslint/EslintPanel.d.ts +6 -0
- package/dist/src/cli/config/eslint/configAst.d.ts +18 -0
- package/dist/src/cli/config/eslint/editConfigRule.d.ts +6 -0
- package/dist/src/cli/config/eslint/eslintStyles.d.ts +1 -0
- package/dist/src/cli/config/eslint/resolveConfig.d.ts +3 -0
- package/dist/src/cli/config/eslint/serializeValue.d.ts +9 -0
- package/dist/src/cli/config/guards.d.ts +4 -0
- package/dist/src/cli/config/packageJson/PackageJsonPanel.d.ts +6 -0
- package/dist/src/cli/config/packageJson/editPackageJson.d.ts +9 -0
- package/dist/src/cli/config/packageJson/resolvePackageJson.d.ts +9 -0
- package/dist/src/cli/config/page/ConfigShell.d.ts +6 -0
- package/dist/src/cli/config/page/FieldEditor.d.ts +9 -0
- package/dist/src/cli/config/page/PanelHost.d.ts +6 -0
- package/dist/src/cli/config/page/configStyles.d.ts +1 -0
- package/dist/src/cli/config/panels.d.ts +7 -0
- package/dist/src/cli/config/prettier/PrettierPanel.d.ts +6 -0
- package/dist/src/cli/config/prettier/editPrettier.d.ts +5 -0
- package/dist/src/cli/config/prettier/resolvePrettier.d.ts +11 -0
- package/dist/src/cli/config/schema/fromJsonSchema.d.ts +3 -0
- package/dist/src/cli/config/schema/fromType.d.ts +2 -0
- package/dist/src/cli/config/schema/serialize.d.ts +1 -0
- package/dist/src/cli/config/server.d.ts +298 -0
- package/dist/src/cli/config/tsconfig/TsconfigPanel.d.ts +6 -0
- package/dist/src/cli/config/tsconfig/editTsconfig.d.ts +5 -0
- package/dist/src/cli/config/tsconfig/resolveTsconfig.d.ts +8 -0
- package/dist/src/cli/config/tsconfig/tsconfigStyles.d.ts +1 -0
- package/dist/src/cli/discoverInstances.d.ts +5 -0
- package/dist/src/cli/generate/componentTemplates.d.ts +7 -0
- package/dist/src/cli/generate/context.d.ts +30 -0
- package/dist/src/cli/generate/cssStrategy.d.ts +20 -0
- package/dist/src/cli/generate/frameworkKey.d.ts +3 -0
- package/dist/src/cli/generate/frameworks.d.ts +40 -0
- package/dist/src/cli/generate/generateApi.d.ts +3 -0
- package/dist/src/cli/generate/generateComponent.d.ts +4 -0
- package/dist/src/cli/generate/generatePage.d.ts +4 -0
- package/dist/src/cli/generate/naming.d.ts +5 -0
- package/dist/src/cli/generate/navData.d.ts +10 -0
- package/dist/src/cli/generate/outcome.d.ts +17 -0
- package/dist/src/cli/generate/pageTemplates.d.ts +11 -0
- package/dist/src/cli/generate/routeWiring.d.ts +40 -0
- package/dist/src/cli/generate/staticNav.d.ts +5 -0
- package/dist/src/cli/heapDiff.d.ts +1 -0
- package/dist/src/cli/htmx/install.d.ts +6 -0
- package/dist/src/cli/index.d.ts +2 -0
- package/dist/src/cli/inspectData.d.ts +12 -0
- package/dist/src/cli/inspectTui.d.ts +1 -0
- package/dist/src/cli/instanceStatus.d.ts +22 -0
- package/dist/src/cli/interactive.d.ts +2 -0
- package/dist/src/cli/psTui.d.ts +1 -0
- package/dist/src/cli/scripts/add.d.ts +1 -0
- package/dist/src/cli/scripts/analyze.d.ts +1 -0
- package/dist/src/cli/scripts/api.d.ts +1 -0
- package/dist/src/cli/scripts/build.d.ts +1 -0
- package/dist/src/cli/scripts/compile.d.ts +2 -0
- package/dist/src/cli/scripts/dev.d.ts +1 -0
- package/dist/src/cli/scripts/doctor.d.ts +1 -0
- package/dist/src/cli/scripts/env.d.ts +7 -0
- package/dist/src/cli/scripts/eslint.d.ts +16 -0
- package/dist/src/cli/scripts/generate.d.ts +1 -0
- package/dist/src/cli/scripts/htmx.d.ts +1 -0
- package/dist/src/cli/scripts/info.d.ts +1 -0
- package/dist/src/cli/scripts/inspect.d.ts +1 -0
- package/dist/src/cli/scripts/islands.d.ts +1 -0
- package/dist/src/cli/scripts/logs.d.ts +1 -0
- package/dist/src/cli/scripts/ls.d.ts +1 -0
- package/dist/src/cli/scripts/mem.d.ts +1 -0
- package/dist/src/cli/scripts/prettier.d.ts +3 -0
- package/dist/src/cli/scripts/ps.d.ts +1 -0
- package/dist/src/cli/scripts/remove.d.ts +1 -0
- package/dist/src/cli/scripts/routes.d.ts +1 -0
- package/dist/src/cli/scripts/start.d.ts +1 -0
- package/dist/src/cli/scripts/telemetry.d.ts +5 -0
- package/dist/src/cli/scripts/tunnelRelay.d.ts +9 -0
- package/dist/src/cli/scripts/typecheck.d.ts +1 -0
- package/dist/src/cli/scripts/workspace.d.ts +11 -0
- package/dist/src/cli/telemetryEvent.d.ts +1 -0
- package/dist/src/cli/tuiPrimitives.d.ts +14 -0
- package/dist/src/cli/utils.d.ts +15 -0
- package/dist/src/cli/workspaceTui.d.ts +44 -0
- package/dist/src/client/hydrators/react.d.ts +3 -0
- package/dist/src/client/hydrators/svelte.d.ts +2 -0
- package/dist/src/client/hydrators/vue.d.ts +2 -0
- package/dist/src/client/index.d.ts +4 -0
- package/dist/src/client/islandResolver.d.ts +2 -0
- package/dist/src/client/islandRuntime.d.ts +9 -0
- package/dist/src/client/islandStore.d.ts +22 -0
- package/dist/src/client/preserveIslandMarkup.d.ts +16 -0
- package/dist/src/client/streamSwap.d.ts +1 -0
- package/dist/src/constants.d.ts +96 -0
- package/dist/src/core/angularServerModule.d.ts +1 -0
- package/dist/src/core/build.d.ts +14 -0
- package/dist/src/core/currentIslandRegistry.d.ts +7 -0
- package/dist/src/core/devBuild.d.ts +23 -0
- package/dist/src/core/devRouteRegistrationCallsite.d.ts +4 -0
- package/dist/src/core/devVendorPaths.d.ts +17 -0
- package/dist/src/core/index.d.ts +7 -0
- package/dist/src/core/islandManifest.d.ts +3 -0
- package/dist/src/core/islandMarkupAttributes.d.ts +12 -0
- package/dist/src/core/islandPageContext.d.ts +12 -0
- package/dist/src/core/islandSsr.d.ts +6 -0
- package/dist/src/core/islands.d.ts +16 -0
- package/dist/src/core/loadIslandRegistry.d.ts +1 -0
- package/dist/src/core/lookup.d.ts +1 -0
- package/dist/src/core/normalizeIslandProps.d.ts +15 -0
- package/dist/src/core/pageHandlers.d.ts +5 -0
- package/dist/src/core/prepare.d.ts +417 -0
- package/dist/src/core/prerender.d.ts +31 -0
- package/dist/src/core/renderIslandMarkup.d.ts +13 -0
- package/dist/src/core/responseEnhancers.d.ts +10 -0
- package/dist/src/core/staticStreaming.d.ts +25 -0
- package/dist/src/core/streamingSlotRegistrar.d.ts +16 -0
- package/dist/src/core/streamingSlotRegistry.d.ts +2 -0
- package/dist/src/core/streamingSlotWarningScope.d.ts +4 -0
- package/dist/src/core/svelteServerModule.d.ts +1 -0
- package/dist/src/core/vueServerModule.d.ts +1 -0
- package/dist/src/core/wrapPageHandlerWithStreamingSlots.d.ts +2 -0
- package/dist/src/dev/angular/fastHmrCompiler.d.ts +58 -0
- package/dist/src/dev/angular/hmrCompiler.d.ts +2 -0
- package/dist/src/dev/angular/hmrImportGenerator.d.ts +3 -0
- package/dist/src/dev/angular/hmrInjectionPlugin.d.ts +8 -0
- package/dist/src/dev/angular/resolveOwningComponents.d.ts +16 -0
- package/dist/src/dev/angular/vendor/translator/api/ast_factory.d.ts +363 -0
- package/dist/src/dev/angular/vendor/translator/api/import_generator.d.ts +49 -0
- package/dist/src/dev/angular/vendor/translator/context.d.ts +18 -0
- package/dist/src/dev/angular/vendor/translator/translator.d.ts +75 -0
- package/dist/src/dev/angular/vendor/translator/ts_util.d.ts +12 -0
- package/dist/src/dev/angular/vendor/translator/typescript_ast_factory.d.ts +66 -0
- package/dist/src/dev/angular/vendor/translator/typescript_translator.d.ts +13 -0
- package/dist/src/dev/assetStore.d.ts +8 -0
- package/dist/src/dev/buildHMRClient.d.ts +1 -0
- package/dist/src/dev/clientManager.d.ts +33 -0
- package/dist/src/dev/configResolver.d.ts +16 -0
- package/dist/src/dev/dependencyGraph.d.ts +10 -0
- package/dist/src/dev/devCert.d.ts +11 -0
- package/dist/src/dev/fileHashTracker.d.ts +2 -0
- package/dist/src/dev/fileWatcher.d.ts +4 -0
- package/dist/src/dev/moduleMapper.d.ts +27 -0
- package/dist/src/dev/moduleServer.d.ts +24 -0
- package/dist/src/dev/moduleVersionTracker.d.ts +7 -0
- package/dist/src/dev/pathUtils.d.ts +8 -0
- package/dist/src/dev/reactComponentClassifier.d.ts +2 -0
- package/dist/src/dev/rebuildTrigger.d.ts +11 -0
- package/dist/src/dev/requestInspector.d.ts +43 -0
- package/dist/src/dev/serverEntryWatcher.d.ts +5 -0
- package/dist/src/dev/simpleHTMLHMR.d.ts +4 -0
- package/dist/src/dev/simpleHTMXHMR.d.ts +4 -0
- package/dist/src/dev/transformCache.d.ts +22 -0
- package/dist/src/dev/tunnel/client.d.ts +20 -0
- package/dist/src/dev/tunnel/protocol.d.ts +85 -0
- package/dist/src/dev/tunnel/relay.d.ts +28 -0
- package/dist/src/dev/webSocket.d.ts +9 -0
- package/dist/src/ember/browser.d.ts +24 -0
- package/dist/src/ember/index.d.ts +2 -0
- package/dist/src/ember/pageHandler.d.ts +35 -0
- package/dist/src/ember/server.d.ts +2 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/islands/browser.d.ts +3 -0
- package/dist/src/islands/index.d.ts +3 -0
- package/dist/src/islands/pageMetadata.d.ts +13 -0
- package/dist/src/islands/sourceMetadata.d.ts +10 -0
- package/dist/src/plugins/devtoolsJson.d.ts +58 -0
- package/dist/src/plugins/hmr.d.ts +163 -0
- package/dist/src/plugins/imageOptimizer.d.ts +67 -0
- package/dist/src/plugins/index.d.ts +3 -0
- package/dist/src/plugins/networking.d.ts +2 -0
- package/dist/src/plugins/pageRouter.d.ts +1 -0
- package/dist/src/react/Island.browser.d.ts +2 -0
- package/dist/src/react/Island.d.ts +2 -0
- package/dist/src/react/bridgeInternals.d.ts +1 -0
- package/dist/src/react/browser.d.ts +3 -0
- package/dist/src/react/components/Head.d.ts +2 -0
- package/dist/src/react/components/Image.d.ts +2 -0
- package/dist/src/react/components/JsonLd.d.ts +4 -0
- package/dist/src/react/components/StreamSlot.browser.d.ts +10 -0
- package/dist/src/react/components/StreamSlot.d.ts +10 -0
- package/dist/src/react/components/SuspenseSlot.browser.d.ts +22 -0
- package/dist/src/react/components/SuspenseSlot.d.ts +37 -0
- package/dist/src/react/components/browser/index.d.ts +5 -0
- package/dist/src/react/components/index.d.ts +5 -0
- package/dist/src/react/createIsland.browser.d.ts +2 -0
- package/dist/src/react/createIsland.d.ts +2 -0
- package/dist/src/react/hooks/index.d.ts +3 -0
- package/dist/src/react/hooks/useIslandStore.d.ts +3 -0
- package/dist/src/react/hooks/useMediaQuery.d.ts +7 -0
- package/dist/src/react/index.d.ts +4 -0
- package/dist/src/react/jsxDevRuntimeCompat.d.ts +8 -0
- package/dist/src/react/pageHandler.d.ts +25 -0
- package/dist/src/react/router/UniversalRouter.d.ts +43 -0
- package/dist/src/react/router/browser.d.ts +2 -0
- package/dist/src/react/router/index.d.ts +2 -0
- package/dist/src/react/server.d.ts +1 -0
- package/dist/src/react/staticAnalyzeSpaRoutes.d.ts +7 -0
- package/dist/src/svelte/browser.d.ts +4 -0
- package/dist/src/svelte/createIsland.browser.d.ts +2 -0
- package/dist/src/svelte/createIsland.d.ts +2 -0
- package/dist/src/svelte/index.d.ts +6 -0
- package/dist/src/svelte/islandStore.d.ts +5 -0
- package/dist/src/svelte/lowerAwaitSlotSyntax.d.ts +4 -0
- package/dist/src/svelte/lowerIslandSyntax.d.ts +4 -0
- package/dist/src/svelte/pageHandler.d.ts +28 -0
- package/dist/src/svelte/renderIsland.d.ts +2 -0
- package/dist/src/svelte/renderToPipeableStream.d.ts +12 -0
- package/dist/src/svelte/renderToReadableStream.d.ts +14 -0
- package/dist/src/svelte/renderToString.d.ts +9 -0
- package/dist/src/svelte/resolveIslandHtml.browser.d.ts +2 -0
- package/dist/src/svelte/resolveIslandHtml.d.ts +2 -0
- package/dist/src/svelte/router/browser.d.ts +4 -0
- package/dist/src/svelte/router/goto.d.ts +15 -0
- package/dist/src/svelte/router/hashMode.d.ts +16 -0
- package/dist/src/svelte/router/index.d.ts +4 -0
- package/dist/src/svelte/router/matchPath.d.ts +30 -0
- package/dist/src/svelte/router/page.svelte.d.ts +15 -0
- package/dist/src/svelte/router/prefetchCache.d.ts +17 -0
- package/dist/src/svelte/router/pushState.d.ts +13 -0
- package/dist/src/svelte/router/viewTransitions.d.ts +6 -0
- package/dist/src/svelte/server.d.ts +1 -0
- package/dist/src/svelte/staticAnalyzeSpaRoutes.d.ts +7 -0
- package/dist/src/utils/buildDirectoryLock.d.ts +28 -0
- package/dist/src/utils/cleanStaleOutputs.d.ts +1 -0
- package/dist/src/utils/cleanup.d.ts +9 -0
- package/dist/src/utils/commonAncestor.d.ts +1 -0
- package/dist/src/utils/defineConfig.d.ts +39 -0
- package/dist/src/utils/defineConvention.d.ts +3 -0
- package/dist/src/utils/defineEnv.d.ts +10 -0
- package/dist/src/utils/escapeScriptContent.d.ts +1 -0
- package/dist/src/utils/formatBytes.d.ts +2 -0
- package/dist/src/utils/generateHeadElement.d.ts +4 -0
- package/dist/src/utils/generateSitemap.d.ts +21 -0
- package/dist/src/utils/generatedDir.d.ts +3 -0
- package/dist/src/utils/getDurationString.d.ts +1 -0
- package/dist/src/utils/getEnv.d.ts +1 -0
- package/dist/src/utils/imageClient.d.ts +13 -0
- package/dist/src/utils/imageProcessing.d.ts +33 -0
- package/dist/src/utils/index.d.ts +11 -0
- package/dist/src/utils/inlinePageCss.d.ts +2 -0
- package/dist/src/utils/instanceRegistry.d.ts +13 -0
- package/dist/src/utils/jsonLd.d.ts +3 -0
- package/dist/src/utils/loadConfig.d.ts +55 -0
- package/dist/src/utils/logger.d.ts +56 -0
- package/dist/src/utils/networking.d.ts +2 -0
- package/dist/src/utils/normalizePath.d.ts +9 -0
- package/dist/src/utils/portScan.d.ts +22 -0
- package/dist/src/utils/projectRoot.d.ts +17 -0
- package/dist/src/utils/registerClientScript.d.ts +36 -0
- package/dist/src/utils/resolveConvention.d.ts +10 -0
- package/dist/src/utils/resolveDevPort.d.ts +24 -0
- package/dist/src/utils/runtimeMode.d.ts +3 -0
- package/dist/src/utils/spaRouteCss.d.ts +4 -0
- package/dist/src/utils/spaRouteTypes.d.ts +25 -0
- package/dist/src/utils/ssrErrorPage.d.ts +1 -0
- package/dist/src/utils/startupBanner.d.ts +10 -0
- package/dist/src/utils/startupTimings.d.ts +7 -0
- package/dist/src/utils/streamingSlotMetricSink.d.ts +18 -0
- package/dist/src/utils/streamingSlots.d.ts +76 -0
- package/dist/src/utils/stringModifiers.d.ts +3 -0
- package/dist/src/utils/userAgentFunctions.d.ts +1 -0
- package/dist/src/utils/validateSafePath.d.ts +1 -0
- package/dist/src/vue/Island.browser.d.ts +37 -0
- package/dist/src/vue/Island.d.ts +36 -0
- package/dist/src/vue/browser.d.ts +6 -0
- package/dist/src/vue/components/Image.d.ts +74 -0
- package/dist/src/vue/components/StreamSlot.d.ts +22 -0
- package/dist/src/vue/components/SuspenseSlot.d.ts +26 -0
- package/dist/src/vue/components/index.d.ts +3 -0
- package/dist/src/vue/createIsland.browser.d.ts +13 -0
- package/dist/src/vue/createIsland.d.ts +13 -0
- package/dist/src/vue/defineVuePage.d.ts +6 -0
- package/dist/src/vue/index.d.ts +9 -0
- package/dist/src/vue/pageHandler.d.ts +45 -0
- package/dist/src/vue/routerRedirectProviders.d.ts +45 -0
- package/dist/src/vue/server.d.ts +2 -0
- package/dist/src/vue/staticAnalyzeSpaRoutes.d.ts +7 -0
- package/dist/src/vue/useIslandStore.d.ts +3 -0
- package/dist/svelte/browser.js +309 -0
- package/dist/svelte/browser.js.map +19 -0
- package/dist/svelte/components/AwaitSlot.svelte +39 -0
- package/dist/svelte/components/AwaitSlot.svelte.d.ts +2 -0
- package/dist/svelte/components/Head.svelte +144 -0
- package/dist/svelte/components/Head.svelte.d.ts +2 -0
- package/dist/svelte/components/Image.svelte +164 -0
- package/dist/svelte/components/Image.svelte.d.ts +5 -0
- package/dist/svelte/components/Island.svelte +71 -0
- package/dist/svelte/components/Island.svelte.d.ts +5 -0
- package/dist/svelte/components/JsonLd.svelte +21 -0
- package/dist/svelte/components/JsonLd.svelte.d.ts +2 -0
- package/dist/svelte/components/StreamSlot.svelte +41 -0
- package/dist/svelte/components/StreamSlot.svelte.d.ts +2 -0
- package/dist/svelte/index.js +4371 -0
- package/dist/svelte/index.js.map +60 -0
- package/dist/svelte/router/Link.svelte +124 -0
- package/dist/svelte/router/Link.svelte.d.ts +21 -0
- package/dist/svelte/router/Route.svelte +54 -0
- package/dist/svelte/router/Route.svelte.d.ts +13 -0
- package/dist/svelte/router/Router.svelte +189 -0
- package/dist/svelte/router/Router.svelte.d.ts +16 -0
- package/dist/svelte/router/browser.ts +14 -0
- package/dist/svelte/router/goto.ts +89 -0
- package/dist/svelte/router/hashMode.ts +31 -0
- package/dist/svelte/router/index.ts +23 -0
- package/dist/svelte/router/matchPath.ts +136 -0
- package/dist/svelte/router/page.d.ts +15 -0
- package/dist/svelte/router/page.js +27 -0
- package/dist/svelte/router/prefetchCache.ts +85 -0
- package/dist/svelte/router/pushState.ts +35 -0
- package/dist/svelte/router/viewTransitions.ts +35 -0
- package/dist/svelte/server.js +2996 -0
- package/dist/svelte/server.js.map +33 -0
- package/dist/types/absoluteConfig.d.ts +22 -0
- package/dist/types/angular.d.ts +43 -0
- package/dist/types/build.d.ts +245 -0
- package/dist/types/cli.d.ts +74 -0
- package/dist/types/client.d.ts +70 -0
- package/dist/types/config.d.ts +50 -0
- package/dist/types/conventions.d.ts +26 -0
- package/dist/types/ember.d.ts +39 -0
- package/dist/types/env.d.ts +2 -0
- package/dist/types/eslintConfig.d.ts +68 -0
- package/dist/types/globals.d.ts +163 -0
- package/dist/types/image.d.ts +77 -0
- package/dist/types/index.d.ts +17 -0
- package/dist/types/island.d.ts +52 -0
- package/dist/types/jsonLd.d.ts +300 -0
- package/dist/types/mediaQuery.d.ts +9 -0
- package/dist/types/messages.d.ts +152 -0
- package/dist/types/metadata.d.ts +51 -0
- package/dist/types/packageJson.d.ts +74 -0
- package/dist/types/packageJsonPanel.d.ts +29 -0
- package/dist/types/prettier.d.ts +26 -0
- package/dist/types/react.d.ts +2 -0
- package/dist/types/sitemap.d.ts +24 -0
- package/dist/types/style-module-shim.d.ts +29 -0
- package/dist/types/svelte.d.ts +2 -0
- package/dist/types/svelteRouter.d.ts +65 -0
- package/dist/types/svelteRouter.ts +91 -0
- package/dist/types/telemetry.d.ts +15 -0
- package/dist/types/tool.d.ts +11 -0
- package/dist/types/tsconfig.d.ts +31 -0
- package/dist/types/typeGuards.d.ts +2 -0
- package/dist/types/userAgentTypes.d.ts +2 -0
- package/dist/types/vue.d.ts +56 -0
- package/dist/types/websocket.d.ts +6 -0
- package/dist/vue/browser.js +512 -0
- package/dist/vue/browser.js.map +22 -0
- package/dist/vue/components/Image.js +264 -0
- package/dist/vue/components/Image.js.map +12 -0
- package/dist/vue/components/index.js +571 -0
- package/dist/vue/components/index.js.map +15 -0
- package/dist/vue/index.js +5238 -0
- package/dist/vue/index.js.map +69 -0
- package/dist/vue/server.js +2251 -0
- package/dist/vue/server.js.map +32 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Compute the deterministic vendor paths mapping (no build needed).
|
|
2
|
+
* This can be called before vendor files exist on disk. */
|
|
3
|
+
export declare const computeVendorPaths: () => Record<string, string>;
|
|
4
|
+
/** Build React packages into stable vendor files (no content hash).
|
|
5
|
+
* Output goes to {buildDir}/react/vendor/ with predictable names like
|
|
6
|
+
* react.js, react-dom_client.js, etc. These files never change between
|
|
7
|
+
* rebuilds, so the browser always loads React from a single source. */
|
|
8
|
+
export declare const buildReactVendor: (buildDir: string) => Promise<void>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Build Svelte packages into stable vendor files (no content hash).
|
|
2
|
+
* Output goes to {buildDir}/svelte/vendor/ with predictable names. */
|
|
3
|
+
export declare const buildSvelteVendor: (buildDir: string) => Promise<void>;
|
|
4
|
+
/** Compute the deterministic vendor paths mapping (no build needed).
|
|
5
|
+
* This can be called before vendor files exist on disk. */
|
|
6
|
+
export declare const computeSvelteVendorPaths: () => Record<string, string>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Build Vue packages into stable vendor files (no content hash).
|
|
2
|
+
* Output goes to {buildDir}/vue/vendor/ with predictable names. */
|
|
3
|
+
export declare const buildVueVendor: (buildDir: string) => Promise<void>;
|
|
4
|
+
/** Compute the deterministic vendor paths mapping (no build needed).
|
|
5
|
+
* This can be called before vendor files exist on disk. */
|
|
6
|
+
export declare const computeVueVendorPaths: () => Record<string, string>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type SourceMap = {
|
|
2
|
+
version: 3;
|
|
3
|
+
sources: (string | null)[];
|
|
4
|
+
sourcesContent?: (string | null)[];
|
|
5
|
+
names: string[];
|
|
6
|
+
mappings: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const buildLineRemap: (before: string, after: string) => number[];
|
|
9
|
+
export declare const inlineLineMapComment: (sourcePath: string, sourceContent: string, generatedContent: string) => string;
|
|
10
|
+
export declare const remapGeneratedLines: (mappings: string, lineRemap: number[]) => string;
|
|
11
|
+
export declare const chainSourcemap: (outer: SourceMap, fetchInner: (sourcePath: string) => SourceMap | null) => SourceMap;
|
|
12
|
+
export declare const chainBundleInlineSourcemap: (bundleFilePath: string) => void;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { StylePreprocessorConfig } from '../../types/build';
|
|
2
|
+
export declare const compileAngularFiles: (inputPaths: string[], outDir: string, stylePreprocessors?: StylePreprocessorConfig) => Promise<string[]>;
|
|
3
|
+
export declare const compileAngularFile: (inputPath: string, outDir: string, stylePreprocessors?: StylePreprocessorConfig) => Promise<string[]>;
|
|
4
|
+
export declare const invalidateAngularJitCache: (filePath: string) => void;
|
|
5
|
+
/** Angular HMR Runtime Layer (Level 3) — JIT-mode compilation for dev/HMR builds.
|
|
6
|
+
* Uses ts.transpileModule() instead of Angular AOT performCompilation().
|
|
7
|
+
* Inlines templateUrl → template and styleUrls → styles from disk.
|
|
8
|
+
* Recursively transpiles all local imports so Bun's bundler can resolve them.
|
|
9
|
+
* ~50-100ms for a tree of ~10 files vs ~500-700ms for AOT. */
|
|
10
|
+
export declare const compileAngularFileJIT: (inputPath: string, outDir: string, rootDir?: string, stylePreprocessors?: StylePreprocessorConfig, cacheBuster?: string) => Promise<string[]>;
|
|
11
|
+
/** Build-time providers info threaded down from `runAngularHandlerScan`.
|
|
12
|
+
* When present, `compileAngular` injects an `export const providers = [...]`
|
|
13
|
+
* declaration directly into each page's compiled server output instead
|
|
14
|
+
* of relying on a sibling `.providers.ts` file. Injecting in-place
|
|
15
|
+
* avoids the circular ESM dependency that arises when a router page
|
|
16
|
+
* exports `routes` (`.providers.ts` would import `routes` from the
|
|
17
|
+
* page, the page server output would re-export `providers` from
|
|
18
|
+
* `.providers.ts` — circular; `provideRouter(undefined, ...)` then
|
|
19
|
+
* throws NG04014 at SSR bootstrap). */
|
|
20
|
+
export type AngularProvidersInjection = {
|
|
21
|
+
/** Source `.ts` path of the user's `angular.providers` binding, or null
|
|
22
|
+
* when no global binding is configured. Router pages still get
|
|
23
|
+
* `provideRouter(routes)` + `APP_BASE_HREF` injected without it — the
|
|
24
|
+
* global `appProviders` spread is simply omitted. */
|
|
25
|
+
appProvidersSource: string | null;
|
|
26
|
+
/** Source `.ts` path → page metadata for every page the scanner saw. */
|
|
27
|
+
pagesByFile: Map<string, {
|
|
28
|
+
hasRoutes: boolean;
|
|
29
|
+
basePath: string | null;
|
|
30
|
+
}>;
|
|
31
|
+
};
|
|
32
|
+
export declare const compileAngular: (entryPoints: string[], outRoot: string, hmr?: boolean, stylePreprocessors?: StylePreprocessorConfig, providersInjection?: AngularProvidersInjection) => Promise<{
|
|
33
|
+
clientPaths: string[];
|
|
34
|
+
serverPaths: string[];
|
|
35
|
+
allIndexesUnchanged?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
allIndexesUnchanged: boolean;
|
|
38
|
+
clientPaths: string[];
|
|
39
|
+
serverPaths: string[];
|
|
40
|
+
}>;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { basename, dirname } from 'node:path';
|
|
2
|
+
/**
|
|
3
|
+
* Compile a single Ember page entry. Returns the absolute paths of the
|
|
4
|
+
* server-side bundled output and the client-side raw module.
|
|
5
|
+
*
|
|
6
|
+
* Server side: full Bun.build pass that inlines the Glimmer runtime,
|
|
7
|
+
* simple-dom, and the renderer. The output exports `renderToHTML(props)`
|
|
8
|
+
* which the page handler calls. Bundling everything into one file
|
|
9
|
+
* guarantees a single state-bearing module instance — no "two copies
|
|
10
|
+
* of @glimmer/runtime" hazard.
|
|
11
|
+
*
|
|
12
|
+
* Client side: just the transpiled module (no bundle). The framework's
|
|
13
|
+
* client bundle pass picks it up alongside other client entries and
|
|
14
|
+
* externalizes the Ember runtime to the vendor URLs.
|
|
15
|
+
*/
|
|
16
|
+
export declare const compileEmberFile: (entry: string, compiledRoot: string, cwd?: string) => Promise<{
|
|
17
|
+
clientPath: string;
|
|
18
|
+
serverPath: string;
|
|
19
|
+
}>;
|
|
20
|
+
/**
|
|
21
|
+
* Batch-compile every entry in `entries`. Mirrors `compileSvelte`'s
|
|
22
|
+
* shape so `core/build.ts` can call it the same way.
|
|
23
|
+
*/
|
|
24
|
+
export declare const compileEmber: (entries: string[], emberDir: string, cwd?: string, _hmr?: boolean) => Promise<{
|
|
25
|
+
clientPaths: string[];
|
|
26
|
+
serverPaths: string[];
|
|
27
|
+
}>;
|
|
28
|
+
/**
|
|
29
|
+
* Hot path used by the dev module server: compile a single entry into
|
|
30
|
+
* a tmp dir and return the resulting JS source string. Phase 1 doesn't
|
|
31
|
+
* implement caching here; phase 3 will.
|
|
32
|
+
*/
|
|
33
|
+
export declare const compileEmberFileSource: (entry: string) => Promise<string>;
|
|
34
|
+
/**
|
|
35
|
+
* Match the `compileSvelte` API surface so the dev rebuilder can call
|
|
36
|
+
* a stable name. Phase 1 returns the entry directory unchanged — caching
|
|
37
|
+
* lives in `compileEmber` itself, not in a separate cache layer.
|
|
38
|
+
*/
|
|
39
|
+
export declare const clearEmberCompilerCache: () => void;
|
|
40
|
+
export declare const getEmberCompiledRoot: (_emberDir?: string) => string;
|
|
41
|
+
export declare const getEmberServerCompiledDir: (emberDir: string) => string;
|
|
42
|
+
export declare const getEmberClientCompiledDir: (emberDir: string) => string;
|
|
43
|
+
export { dirname, basename };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { StylePreprocessorConfig } from '../../types/build';
|
|
2
|
+
type Built = {
|
|
3
|
+
ssr: string;
|
|
4
|
+
client: string;
|
|
5
|
+
hasAwaitSlot: boolean;
|
|
6
|
+
};
|
|
7
|
+
type Cache = Map<string, Built>;
|
|
8
|
+
export declare const clearSvelteCompilerCache: () => void;
|
|
9
|
+
export declare const compileSvelte: (entryPoints: string[], svelteRoot: string, cache?: Cache, isDev?: boolean, stylePreprocessors?: StylePreprocessorConfig) => Promise<{
|
|
10
|
+
svelteClientPaths: string[];
|
|
11
|
+
svelteIndexPaths: string[];
|
|
12
|
+
svelteServerPaths: string[];
|
|
13
|
+
}>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { BuildConfig, StylePreprocessorConfig, TailwindConfig } from '../../types/build';
|
|
2
|
+
export declare const computeFrameworkTailwindSources: (config: BuildConfig) => string[];
|
|
3
|
+
export declare const isTailwindCandidate: (filePath: string) => boolean;
|
|
4
|
+
export declare const compileTailwind: (input: string, output: string, buildPath: string, styleTransformConfig?: StylePreprocessorConfig, extraSources?: string[], changedFiles?: string[]) => Promise<void>;
|
|
5
|
+
export declare const compileTailwindConfig: (tailwind: TailwindConfig, buildPath: string, styleTransformConfig?: StylePreprocessorConfig, extraSources?: string[], changedFiles?: string[]) => Promise<void>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { SFCDescriptor } from '@vue/compiler-sfc';
|
|
2
|
+
import { type ParsedVueSpaRoute } from './parseVueSpaRoutes';
|
|
3
|
+
import type { StylePreprocessorConfig } from '../../types/build';
|
|
4
|
+
export type VueChangeType = 'style-only' | 'template-only' | 'script' | 'full';
|
|
5
|
+
export declare const vueHmrMetadata: Map<string, {
|
|
6
|
+
hmrId: string;
|
|
7
|
+
changeType: VueChangeType;
|
|
8
|
+
}>;
|
|
9
|
+
export declare const clearVueHmrCaches: () => void;
|
|
10
|
+
export declare const detectVueChangeType: (filePath: string, descriptor: SFCDescriptor) => "script" | "template-only" | "full" | "style-only";
|
|
11
|
+
export declare const generateVueHmrId: (sourceFilePath: string, vueRootDir: string) => string;
|
|
12
|
+
export declare const compileVue: (entryPoints: string[], vueRootDir: string, isDev?: boolean, stylePreprocessors?: StylePreprocessorConfig, ssrOnlyEntries?: ReadonlySet<string>) => Promise<{
|
|
13
|
+
hmrMetadata: Map<string, {
|
|
14
|
+
hmrId: string;
|
|
15
|
+
changeType: VueChangeType;
|
|
16
|
+
}>;
|
|
17
|
+
vueClientPaths: string[];
|
|
18
|
+
vueCssPaths: string[];
|
|
19
|
+
vueIndexPaths: string[];
|
|
20
|
+
vueServerPaths: string[];
|
|
21
|
+
vueSpaRoutesBySource: Map<string, ParsedVueSpaRoute[]>;
|
|
22
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bun build plugin that wraps HTML/HTMX scripts with import.meta.hot support
|
|
3
|
+
* for granular HMR. This allows script changes to hot-reload independently
|
|
4
|
+
* without triggering a full HTML page rebuild.
|
|
5
|
+
*/
|
|
6
|
+
import type { BunPlugin } from 'bun';
|
|
7
|
+
/**
|
|
8
|
+
* Creates a Bun build plugin that wraps HTML/HTMX scripts with HMR support
|
|
9
|
+
* @param htmlDir - The HTML directory path (normalized with forward slashes)
|
|
10
|
+
* @param htmxDir - The HTMX directory path (normalized with forward slashes)
|
|
11
|
+
* @returns Bun build plugin
|
|
12
|
+
*/
|
|
13
|
+
export declare const createHTMLScriptHMRPlugin: (htmlDir?: string, htmxDir?: string) => BunPlugin;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { IslandFramework, IslandRegistryInput } from '../../types/island';
|
|
2
|
+
type IslandBuildEntry = {
|
|
3
|
+
component: string;
|
|
4
|
+
entryPath: string;
|
|
5
|
+
framework: IslandFramework;
|
|
6
|
+
};
|
|
7
|
+
type IslandDefinition = {
|
|
8
|
+
buildReference: {
|
|
9
|
+
export?: string;
|
|
10
|
+
source: string;
|
|
11
|
+
} | null;
|
|
12
|
+
component: string;
|
|
13
|
+
framework: IslandFramework;
|
|
14
|
+
};
|
|
15
|
+
type IslandRegistryBuildInfo = {
|
|
16
|
+
definitions: IslandDefinition[];
|
|
17
|
+
hasNamedExport: boolean;
|
|
18
|
+
registry: IslandRegistryInput;
|
|
19
|
+
resolvedRegistryPath: string;
|
|
20
|
+
};
|
|
21
|
+
type IslandEntryPathMaps = Partial<Record<IslandFramework, Map<string, string>>>;
|
|
22
|
+
export declare const collectIslandFrameworkSources: (buildInfo: IslandRegistryBuildInfo) => Partial<Record<IslandFramework, string[]>>;
|
|
23
|
+
export declare const generateIslandEntryPoints: ({ buildInfo, buildPath, clientPathMaps }: {
|
|
24
|
+
buildInfo: IslandRegistryBuildInfo;
|
|
25
|
+
buildPath: string;
|
|
26
|
+
clientPathMaps?: IslandEntryPathMaps;
|
|
27
|
+
}) => Promise<{
|
|
28
|
+
entries: IslandBuildEntry[];
|
|
29
|
+
generatedRoot: string;
|
|
30
|
+
}>;
|
|
31
|
+
export declare const loadIslandRegistryBuildInfo: (registryPath: string) => Promise<IslandRegistryBuildInfo>;
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { BunPlugin } from 'bun';
|
|
2
|
+
import type { IslandFramework } from '../../types/island';
|
|
3
|
+
type IslandDefinitionLite = {
|
|
4
|
+
buildReference: {
|
|
5
|
+
export?: string;
|
|
6
|
+
source: string;
|
|
7
|
+
} | null;
|
|
8
|
+
component: string;
|
|
9
|
+
framework: IslandFramework;
|
|
10
|
+
};
|
|
11
|
+
export type IslandRegistryTransformInfo = {
|
|
12
|
+
definitions: IslandDefinitionLite[];
|
|
13
|
+
resolvedRegistryPath: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const transformIslandRegistrySource: (source: string, filePath: string, info: IslandRegistryTransformInfo) => string | null;
|
|
16
|
+
export declare const createIslandRegistryDefinitionPlugin: (info: IslandRegistryTransformInfo) => BunPlugin;
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/** Native Zig import rewriter — 15x faster than JS regex on large files.
|
|
2
|
+
* Falls back to JS if the native addon isn't available (Windows, missing .so). */
|
|
3
|
+
/** Rewrite import specifiers in a string using the native Zig scanner.
|
|
4
|
+
* Returns the rewritten string, or null if native isn't available. */
|
|
5
|
+
export declare const nativeRewriteImports: (content: string, replacements: [string, string][]) => string | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const outputLogs: (logs: (BuildMessage | ResolveMessage)[]) => void;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type AngularProvidersImport = {
|
|
2
|
+
/** Local binding name as referenced in the config (e.g. `appProviders`). */
|
|
3
|
+
bindingName: string;
|
|
4
|
+
/** Original exported name on the source module. */
|
|
5
|
+
importedName: string;
|
|
6
|
+
/** Resolved absolute path to the providers module (no extension). */
|
|
7
|
+
absolutePath: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const parseAngularProvidersImport: (projectRoot: string) => AngularProvidersImport | null;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/** Extract SPA child routes from a Vue page's source.
|
|
2
|
+
*
|
|
3
|
+
* Looks for `export const routes = defineRoutes([ ... ])` and parses
|
|
4
|
+
* each entry's `{ path, component: () => import('./X.vue') }` shape
|
|
5
|
+
* into a `{ path, importPath }` pair. The result drives the per-route
|
|
6
|
+
* CSS side-manifest emitted in `core/build.ts` so the SSR handler can
|
|
7
|
+
* inline the matched child route's compiled CSS (see
|
|
8
|
+
* `utils/spaRouteCss.ts` for the runtime side).
|
|
9
|
+
*
|
|
10
|
+
* Regex-based on purpose: the supported shape is single-statement
|
|
11
|
+
* array-of-object-literals, which is the only form `defineRoutes` is
|
|
12
|
+
* documented to take. AST parsing would catch a few exotic edge cases
|
|
13
|
+
* but adds a dependency on every page compile; the failure mode of a
|
|
14
|
+
* miss is "child route CSS isn't inlined for that route", same as
|
|
15
|
+
* pre-feature behaviour, so a loose regex is the right trade-off. */
|
|
16
|
+
export type ParsedVueSpaRoute = {
|
|
17
|
+
path: string;
|
|
18
|
+
importPath: string;
|
|
19
|
+
};
|
|
20
|
+
export declare const parseVueSpaRoutes: (source: string) => ParsedVueSpaRoute[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolve a bare module import (e.g. "@absolutejs/absolute/svelte/components/Image.svelte")
|
|
3
|
+
* to an absolute file path by reading the package's exports map in package.json.
|
|
4
|
+
*
|
|
5
|
+
* Returns the resolved absolute path, or null if the import can't be resolved.
|
|
6
|
+
*/
|
|
7
|
+
type ExportConditions = 'browser' | 'import';
|
|
8
|
+
export declare const resolvePackageImport: (specifier: string, conditions?: ExportConditions[]) => string | null;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Compatibility shim — the rewrite logic moved to
|
|
2
|
+
* `rewriteImportsPlugin.ts` where it runs in-pipeline against
|
|
3
|
+
* `BuildArtifact[]` straight off `Bun.build()`'s result. Existing callers
|
|
4
|
+
* that still pass a list of file paths route through this thin wrapper.
|
|
5
|
+
* The new in-pipeline call site is `rewriteBuildOutputs`/`buildWithImportRewrite`
|
|
6
|
+
* in `rewriteImportsPlugin.ts`. */
|
|
7
|
+
export declare const rewriteImports: (outputPaths: string[], vendorPaths: Record<string, string>) => Promise<void>;
|
|
8
|
+
export declare const rewriteVendorDirectories: (vendorDirs: string[], vendorPaths: Record<string, string>) => Promise<void>;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/** In-pipeline import rewriter for Bun.build outputs.
|
|
2
|
+
*
|
|
3
|
+
* Replaces the previous post-build `rewriteImports` + `rewriteVendorDirectories`
|
|
4
|
+
* passes that walked file paths captured at scheduling time and read them off
|
|
5
|
+
* disk later — a race window where the next rebuild could sweep a path between
|
|
6
|
+
* capture and read, producing ENOENT.
|
|
7
|
+
*
|
|
8
|
+
* Now: the rewrite operates on the `BuildArtifact` outputs returned by
|
|
9
|
+
* `Bun.build()` itself, in the same await chain. Each output's content is
|
|
10
|
+
* transformed (using the native Zig scanner when available, falling back to
|
|
11
|
+
* the JS regex implementation), then written back to disk. The standalone
|
|
12
|
+
* iteration over a captured path list goes away. */
|
|
13
|
+
import type { BuildArtifact, BuildOutput } from 'bun';
|
|
14
|
+
/** JS fallback: regex-based import rewriting. */
|
|
15
|
+
export declare const jsRewriteImports: (content: string, replacements: [string, string][]) => string;
|
|
16
|
+
/** Apply the bare-specifier → vendor-URL rewrite to a single chunk of text. */
|
|
17
|
+
export declare const rewriteImportsInContent: (content: string, vendorPaths: Record<string, string>) => string;
|
|
18
|
+
/** Workaround for a Bun bundler bug: when a module does both
|
|
19
|
+
* `import { x } from 'X'` AND `export * from 'X'`, and `X` is externalized,
|
|
20
|
+
* Bun synthesizes a `__reExport(exports_Y, ns)` call but drops the
|
|
21
|
+
* corresponding `import * as ns from "X"` declaration. The resulting chunk
|
|
22
|
+
* references an undeclared identifier and crashes at module evaluation.
|
|
23
|
+
*
|
|
24
|
+
* Detects the pattern and injects the missing namespace import. The source
|
|
25
|
+
* path is recovered from a sibling named-import in the same chunk (Bun keeps
|
|
26
|
+
* that intact). */
|
|
27
|
+
export declare const fixMissingReExportNamespacesInContent: (content: string) => string;
|
|
28
|
+
/** In-pipeline output rewrite. Reads each emitted .js artifact, applies the
|
|
29
|
+
* rewrite, and writes back. Operates on `BuildArtifact[]` straight off
|
|
30
|
+
* `Bun.build()`'s result so paths are guaranteed-current — no race window. */
|
|
31
|
+
export declare const rewriteBuildOutputs: (outputs: BuildArtifact[], vendorPaths: Record<string, string>) => Promise<void>;
|
|
32
|
+
/** Like `rewriteBuildOutputs`, but takes a separate per-artifact resolver to
|
|
33
|
+
* produce path maps. Used for the SSR-side @angular/* rewrite which uses
|
|
34
|
+
* paths relative to each artifact's directory. */
|
|
35
|
+
export declare const rewriteBuildOutputsWith: (outputs: BuildArtifact[], resolveVendorPaths: (artifact: BuildArtifact) => Record<string, string>) => Promise<void>;
|
|
36
|
+
/** Apply the rewrite + re-export fix to every .js file inside a list of
|
|
37
|
+
* vendor directories. Used after vendor builds where each pipeline emits
|
|
38
|
+
* files that may externalize specifiers owned by another pipeline.
|
|
39
|
+
*
|
|
40
|
+
* This still walks the directory because the cross-vendor rewrite happens
|
|
41
|
+
* AFTER all vendor builds complete (so every framework's path map is
|
|
42
|
+
* available) — it doesn't have a single `BuildArtifact[]` to operate on.
|
|
43
|
+
* ENOENT during read/write is tolerated for the same race-protection
|
|
44
|
+
* reason as the in-pipeline path. */
|
|
45
|
+
export declare const rewriteVendorDirectories: (vendorDirs: string[], vendorPaths: Record<string, string>) => Promise<void>;
|
|
46
|
+
/** Helper to wrap a `Bun.build` call so the rewrite happens in-pipeline.
|
|
47
|
+
* Use as: `const result = await buildWithImportRewrite(bunBuild(config), vendorPaths)`. */
|
|
48
|
+
export declare const buildWithImportRewrite: (pendingBuild: Promise<BuildOutput>, vendorPaths: Record<string, string>) => Promise<BuildOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/** Post-process bundled output files to rewrite bare React specifiers
|
|
2
|
+
* (e.g. `from "react"`) to stable vendor paths (e.g. `from "/vendor/react.js"`).
|
|
3
|
+
*
|
|
4
|
+
* Uses native Zig scanner when available (15x faster on large files),
|
|
5
|
+
* falls back to JS regex on Windows or when native addon is missing. */
|
|
6
|
+
export declare const patchRefreshGlobals: (outputPaths: string[]) => Promise<void>;
|
|
7
|
+
export declare const rewriteReactImports: (outputPaths: string[], vendorPaths: Record<string, string>) => Promise<void>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type AngularHandlerCall } from './scanAngularHandlerCalls';
|
|
2
|
+
import { type AngularPageRoutes } from './scanAngularPageRoutes';
|
|
3
|
+
export type AngularHandlerScanResult = {
|
|
4
|
+
calls: AngularHandlerCall[];
|
|
5
|
+
pageRoutes: AngularPageRoutes[];
|
|
6
|
+
};
|
|
7
|
+
export declare const runAngularHandlerScan: (projectRoot: string, angularDirectory: string) => AngularHandlerScanResult;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type AngularHandlerCall = {
|
|
2
|
+
/** File the call lives in. */
|
|
3
|
+
sourceFile: string;
|
|
4
|
+
/** Manifest key extracted from `pagePath: asset(manifest, "Foo")`. */
|
|
5
|
+
manifestKey: string;
|
|
6
|
+
/** Mount path from the surrounding `.get("/path", ...)` / `.post(...)`
|
|
7
|
+
* Elysia chain. `null` when the call isn't directly inside such a
|
|
8
|
+
* registration (rare but possible — e.g. inside a helper function). */
|
|
9
|
+
mountPath: string | null;
|
|
10
|
+
};
|
|
11
|
+
/** Walk every TypeScript file under `projectRoot` and return all
|
|
12
|
+
* `handleAngularPageRequest({...})` calls found. */
|
|
13
|
+
export declare const scanAngularHandlerCalls: (projectRoot: string) => AngularHandlerCall[];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type AngularPageRoutes = {
|
|
2
|
+
/** Absolute path of the page module. */
|
|
3
|
+
pageFile: string;
|
|
4
|
+
/** Manifest key (PascalCase of basename) — `home/home.ts` → `Home`. */
|
|
5
|
+
manifestKey: string;
|
|
6
|
+
/** True when the page module top-level declares
|
|
7
|
+
* `export const routes` (or `let`/`var`). */
|
|
8
|
+
hasRoutes: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare const scanAngularPageRoutes: (pagesRoot: string) => AngularPageRoutes[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const scanCssEntryPoints: (dir: string, ignore?: string[]) => Promise<string[]>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const scanEntryPoints: (dir: string, pattern: string) => Promise<string[]>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type ExtractedRoute = {
|
|
2
|
+
/** Uppercase HTTP method, matching Elysia's runtime `route.method`. */
|
|
3
|
+
method: string;
|
|
4
|
+
/** Path argument literal — including leading slash, no host. */
|
|
5
|
+
path: string;
|
|
6
|
+
/** Verbatim source of the full `.method(...)` CallExpression. Used
|
|
7
|
+
* downstream as a stand-in for the runtime handler so the existing
|
|
8
|
+
* `isPageHandler` / `extractSitemapMetadata` substring checks work
|
|
9
|
+
* unchanged against AST-discovered routes. */
|
|
10
|
+
handlerSource: string;
|
|
11
|
+
};
|
|
12
|
+
/** Walk every TypeScript source file under `projectRoot` and return the
|
|
13
|
+
* Elysia route registrations found. Skip-dirs (`node_modules`, `dist`,
|
|
14
|
+
* `build`, framework build caches, dotfile dirs) are excluded.
|
|
15
|
+
*
|
|
16
|
+
* No path deduplication here on purpose: the same path (e.g. `/`) is
|
|
17
|
+
* frequently registered by multiple plugins (one page route at the
|
|
18
|
+
* root, several API sub-plugins under prefixes like `/v1/foo`). The
|
|
19
|
+
* scanner has no way to know the prefix without tracing `.use()` /
|
|
20
|
+
* `new Elysia({ prefix })`, but it doesn't need to — sitemap discovery
|
|
21
|
+
* downstream filters by `isPageHandler` and then dedups by mount path,
|
|
22
|
+
* so API duplicates are dropped naturally. */
|
|
23
|
+
export declare const scanRouteRegistrations: (projectRoot: string) => ExtractedRoute[];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Walk every TypeScript source file under `projectRoot` and collect
|
|
2
|
+
* the set of Vue page manifest keys flagged `client: 'none'` at
|
|
3
|
+
* registration time. The returned names correspond to the PascalCased
|
|
4
|
+
* basenames of the .vue source files (e.g. `LandingPage` matches
|
|
5
|
+
* `LandingPage.vue`). */
|
|
6
|
+
export declare const scanVueSsrOnlyPages: (projectRoot: string) => Set<string>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IslandRegistryInput } from '../../types/island';
|
|
2
|
+
export declare const transformStaticPageHtml: (originalHtml: string, registry: IslandRegistryInput) => Promise<string>;
|
|
3
|
+
export declare const transformStaticHTMXStreamSlotHtml: (originalHtml: string) => string;
|
|
4
|
+
export declare const transformStaticStreamingSlotHtml: (originalHtml: string) => string;
|
|
5
|
+
export declare const transformCurrentStaticPageHtml: (html: string, options?: {
|
|
6
|
+
enableHTMXStreaming?: boolean;
|
|
7
|
+
enableStaticStreaming?: boolean;
|
|
8
|
+
}) => Promise<string>;
|
|
9
|
+
export declare const transformStaticPagesWithIslands: (registryPath: string | undefined, pagePaths: string[]) => Promise<void>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { BunPlugin } from 'bun';
|
|
2
|
+
import type { PostCSSConfig, StylePreprocessorConfig } from '../../types/build';
|
|
3
|
+
export declare const isPreprocessableStylePath: (filePath: string) => boolean;
|
|
4
|
+
export declare const isStyleModulePath: (filePath: string) => boolean;
|
|
5
|
+
export declare const isStylePath: (filePath: string) => boolean;
|
|
6
|
+
export declare const getStyleBaseName: (filePath: string) => string;
|
|
7
|
+
export declare const createStyleTransformConfig: (stylePreprocessors?: StylePreprocessorConfig, postcss?: PostCSSConfig) => StylePreprocessorConfig | undefined;
|
|
8
|
+
export declare const addStyleImporter: (importerPath: string, stylePath: string) => void;
|
|
9
|
+
export declare const findStyleEntriesImporting: (changedPath: string) => string[];
|
|
10
|
+
export declare const recordStyleOutput: (entry: string, css: string) => boolean;
|
|
11
|
+
export declare const forgetStyleEntry: (entry: string) => void;
|
|
12
|
+
export declare const compileStyleSource: (filePath: string, source?: string, languageHint?: string, config?: StylePreprocessorConfig) => Promise<string>;
|
|
13
|
+
export declare const createStylePreprocessorPlugin: (config?: StylePreprocessorConfig) => BunPlugin;
|
|
14
|
+
export declare const stylePreprocessorPlugin: BunPlugin;
|
|
15
|
+
export declare const createSvelteStylePreprocessor: (config?: StylePreprocessorConfig) => {
|
|
16
|
+
style: ({ attributes, content, filename }: {
|
|
17
|
+
attributes: Record<string, string | boolean>;
|
|
18
|
+
content: string;
|
|
19
|
+
filename?: string;
|
|
20
|
+
}) => Promise<{
|
|
21
|
+
code: string;
|
|
22
|
+
} | undefined>;
|
|
23
|
+
};
|
|
24
|
+
export declare const compileStyleFileIfNeeded: (filePath: string, config?: StylePreprocessorConfig) => Promise<string>;
|
|
25
|
+
export declare const compileStyleFileIfNeededSync: (filePath: string, config?: StylePreprocessorConfig) => string;
|
|
26
|
+
export declare const getCssOutputExtension: (filePath: string) => string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { StylePreprocessorConfig, TailwindConfig } from '../../types/build';
|
|
2
|
+
export declare const extractCandidates: (source: string) => Set<string>;
|
|
3
|
+
export declare const disposeTailwindCompiler: (cssPath?: string) => void;
|
|
4
|
+
export declare const incrementalTailwindBuild: (tailwind: TailwindConfig, buildPath: string, changedFiles: string[], styleTransformConfig?: StylePreprocessorConfig, extraSources?: string[]) => Promise<{
|
|
5
|
+
cssChanged: boolean;
|
|
6
|
+
durationMs: number;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const warmTailwindCompiler: (tailwind: TailwindConfig, extraSources?: string[]) => Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const updateAssetPaths: (manifest: Record<string, string>, directory: string) => Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const generateVendorEntrySource: (specifier: string) => Promise<string>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const addAutoRouterSetupApp: (sourceContent: string) => string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wraps HTML/HTMX TypeScript/JavaScript scripts with import.meta.hot support
|
|
3
|
+
* for granular HMR updates. This allows script changes to hot-reload
|
|
4
|
+
* without triggering a full HTML page rebuild.
|
|
5
|
+
*
|
|
6
|
+
* The wrapper is minimal - it just adds import.meta.hot.accept() so Bun
|
|
7
|
+
* knows this module can be hot-reloaded. Event listener cleanup is handled
|
|
8
|
+
* by the HMR client (cloning elements before script re-execution).
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Wrap a script with HMR support using Bun's import.meta.hot API
|
|
12
|
+
* @param code - The original script code
|
|
13
|
+
* @param scriptId - Unique identifier for this script (usually the file path)
|
|
14
|
+
* @returns Wrapped code with HMR support
|
|
15
|
+
*/
|
|
16
|
+
export declare const isHTMLScript: (filePath: string, htmlDir?: string, htmxDir?: string) => boolean;
|
|
17
|
+
export declare const wrapHTMLScriptWithHMR: (code: string, scriptId: string) => string;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FrameworkKey } from '../generate/frameworkKey';
|
|
2
|
+
type FrameworkDependencies = {
|
|
3
|
+
dependencies: Record<string, string>;
|
|
4
|
+
devDependencies: Record<string, string>;
|
|
5
|
+
};
|
|
6
|
+
export declare const FRAMEWORK_DEPENDENCIES: Record<FrameworkKey, FrameworkDependencies>;
|
|
7
|
+
export declare const frameworkDependencyNames: (framework: FrameworkKey) => string[];
|
|
8
|
+
export declare const installFrameworkDependencies: (cwd: string, framework: FrameworkKey) => {
|
|
9
|
+
ok: boolean;
|
|
10
|
+
specs: string[];
|
|
11
|
+
};
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { ToolAdapter, ToolCacheData } from '../../types/tool';
|
|
2
|
+
export declare const CACHE_DIR = ".absolutejs";
|
|
3
|
+
export declare const MAX_FILES_PER_BATCH = 200;
|
|
4
|
+
export declare const getChangedFiles: (adapter: ToolAdapter) => Promise<{
|
|
5
|
+
cache: ToolCacheData;
|
|
6
|
+
changed: string[];
|
|
7
|
+
}>;
|
|
8
|
+
export declare const hashConfigs: (configFiles: string[]) => Promise<string>;
|
|
9
|
+
export declare const hashFile: (path: string) => Promise<string>;
|
|
10
|
+
export declare const hashFiles: (paths: string[]) => Promise<{
|
|
11
|
+
[k: string]: string;
|
|
12
|
+
}>;
|
|
13
|
+
export declare const loadCache: (tool: string) => Promise<ToolCacheData | null>;
|
|
14
|
+
export declare const runTool: (adapter: ToolAdapter, args: string[]) => Promise<void>;
|
|
15
|
+
export declare const saveCache: (tool: string, data: ToolCacheData) => Promise<void>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { AbsoluteConfigState } from '../../../../types/absoluteConfig';
|
|
2
|
+
type AbsoluteConfigPanelProps = {
|
|
3
|
+
state: AbsoluteConfigState;
|
|
4
|
+
};
|
|
5
|
+
export declare const AbsoluteConfigPanel: ({ state: initial }: AbsoluteConfigPanelProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
2
|
+
export declare const findConfigPath: (cwd: string, override?: string) => string | null;
|
|
3
|
+
export declare const findConfigObject: (sourceFile: ts.Node) => ts.ObjectLiteralExpression | null;
|
|
4
|
+
export declare const parseConfigObject: (configPath: string) => {
|
|
5
|
+
object: ts.ObjectLiteralExpression | null;
|
|
6
|
+
text: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const resolveAbsoluteConfigState: (cwd: string, override?: string) => {
|
|
9
|
+
available: boolean;
|
|
10
|
+
configPath: string | null;
|
|
11
|
+
current: Record<string, unknown>;
|
|
12
|
+
fields: import("../../../../types/config").FieldNode[];
|
|
13
|
+
opaqueKeys: string[];
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|