@ecopages/core 0.2.0-alpha.9 → 0.2.1
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 +18 -11
- package/README.md +23 -26
- package/package.json +76 -58
- package/src/adapters/README.md +2 -2
- package/src/adapters/abstract/application-adapter.d.ts +28 -2
- package/src/adapters/abstract/application-adapter.js +14 -2
- package/src/adapters/abstract/router-adapter.d.ts +1 -1
- package/src/adapters/abstract/server-adapter.d.ts +2 -2
- package/src/adapters/bun/client-bridge.d.ts +1 -1
- package/src/adapters/bun/create-app.d.ts +4 -12
- package/src/adapters/bun/create-app.js +4 -5
- package/src/adapters/bun/hmr-manager.d.ts +4 -4
- package/src/adapters/bun/hmr-manager.js +8 -8
- package/src/adapters/bun/index.d.ts +1 -1
- package/src/adapters/bun/index.js +2 -2
- package/src/adapters/bun/server-adapter.d.ts +5 -5
- package/src/adapters/bun/server-adapter.js +6 -5
- package/src/adapters/bun/server-lifecycle.d.ts +4 -4
- package/src/adapters/bun/server-lifecycle.js +2 -2
- package/src/{create-app.d.ts → adapters/create-app.d.ts} +9 -6
- package/src/{create-app.js → adapters/create-app.js} +4 -4
- package/src/adapters/index.d.ts +1 -5
- package/src/adapters/index.js +1 -7
- package/src/adapters/node/create-app.d.ts +6 -9
- package/src/adapters/node/create-app.js +12 -6
- package/src/adapters/node/node-client-bridge.d.ts +1 -1
- package/src/adapters/node/node-hmr-manager.d.ts +2 -2
- package/src/adapters/node/node-hmr-manager.js +3 -3
- package/src/adapters/node/server-adapter.d.ts +4 -4
- package/src/adapters/node/server-adapter.js +13 -12
- package/src/adapters/node/static-content-server.d.ts +1 -1
- package/src/adapters/node/static-content-server.js +1 -1
- package/src/adapters/shared/application-adapter.d.ts +1 -1
- package/src/adapters/shared/define-api-handler.d.ts +1 -1
- package/src/adapters/shared/explicit-static-route-matcher.d.ts +2 -2
- package/src/adapters/shared/file-route-middleware-pipeline.d.ts +1 -1
- package/src/adapters/shared/fs-server-response-factory.d.ts +2 -2
- package/src/adapters/shared/fs-server-response-factory.js +1 -1
- package/src/adapters/shared/fs-server-response-matcher.d.ts +1 -1
- package/src/adapters/shared/hmr-entrypoint-registrar.js +1 -1
- package/src/adapters/shared/hmr-html-response.d.ts +1 -1
- package/src/adapters/shared/render-context.d.ts +2 -1
- package/src/adapters/shared/render-context.js +3 -1
- package/src/adapters/shared/runtime-bootstrap.d.ts +1 -1
- package/src/adapters/shared/runtime-bootstrap.js +1 -1
- package/src/adapters/shared/server-adapter.d.ts +1 -1
- package/src/adapters/shared/server-adapter.js +5 -1
- package/src/adapters/shared/server-route-handler.d.ts +4 -4
- package/src/adapters/shared/server-route-handler.js +3 -3
- package/src/adapters/shared/server-static-builder.d.ts +5 -5
- package/src/adapters/shared/server-static-builder.js +5 -4
- package/src/build/README.md +19 -13
- package/src/build/build-adapter.d.ts +67 -20
- package/src/build/build-adapter.js +420 -19
- package/src/build/dev-build-coordinator.d.ts +10 -12
- package/src/build/dev-build-coordinator.js +8 -15
- package/src/build/esbuild-build-adapter.d.ts +6 -0
- package/src/build/esbuild-build-adapter.js +94 -11
- package/src/build/runtime-build-executor.d.ts +5 -4
- package/src/build/runtime-build-executor.js +5 -3
- package/src/build/runtime-specifier-alias-plugin.js +19 -15
- package/src/build/runtime-specifier-aliases.d.ts +5 -0
- package/src/build/runtime-specifier-aliases.js +95 -0
- package/src/config/README.md +5 -2
- package/src/config/config-builder.d.ts +25 -2
- package/src/config/config-builder.js +44 -7
- package/src/declarations.d.ts +1 -1
- package/src/dev/sc-server.d.ts +1 -1
- package/src/dev/sc-server.js +1 -1
- package/src/eco/eco.browser.d.ts +2 -0
- package/src/eco/eco.browser.js +83 -0
- package/src/eco/eco.js +19 -48
- package/src/eco/eco.types.d.ts +1 -1
- package/src/eco/eco.utils.d.ts +1 -40
- package/src/eco/eco.utils.js +5 -35
- package/src/eco/global-injector-map.d.ts +1 -1
- package/src/eco/lazy-injector-map.d.ts +1 -1
- package/src/hmr/hmr-strategy.d.ts +16 -13
- package/src/hmr/hmr-strategy.js +22 -7
- package/src/hmr/strategies/default-hmr-strategy.d.ts +2 -2
- package/src/hmr/strategies/default-hmr-strategy.js +1 -1
- package/src/hmr/strategies/js-hmr-strategy.d.ts +2 -2
- package/src/hmr/strategies/js-hmr-strategy.js +2 -2
- package/src/index.browser.d.ts +2 -2
- package/src/index.browser.js +1 -1
- package/src/index.d.ts +3 -2
- package/src/index.js +15 -4
- package/src/integrations/ghtml/ghtml-renderer.d.ts +6 -1
- package/src/integrations/ghtml/ghtml-renderer.js +29 -28
- package/src/integrations/ghtml/ghtml.plugin.d.ts +2 -2
- package/src/integrations/ghtml/ghtml.plugin.js +2 -2
- package/src/plugins/README.md +1 -0
- package/src/plugins/eco-component-meta-plugin.d.ts +12 -1
- package/src/plugins/eco-component-meta-plugin.js +26 -20
- package/src/plugins/foreign-jsx-override-plugin.d.ts +31 -0
- package/src/plugins/foreign-jsx-override-plugin.js +35 -0
- package/src/plugins/integration-plugin.d.ts +99 -33
- package/src/plugins/integration-plugin.js +68 -21
- package/src/plugins/processor.d.ts +2 -2
- package/src/plugins/processor.js +2 -2
- package/src/plugins/source-transform.d.ts +46 -0
- package/src/plugins/source-transform.js +71 -0
- package/src/route-renderer/GRAPH.md +54 -84
- package/src/route-renderer/README.md +14 -20
- package/src/route-renderer/orchestration/component-render-context.d.ts +83 -0
- package/src/route-renderer/orchestration/component-render-context.js +147 -0
- package/src/route-renderer/orchestration/integration-renderer.d.ts +233 -76
- package/src/route-renderer/orchestration/integration-renderer.js +500 -143
- package/src/route-renderer/orchestration/queued-boundary-runtime.service.d.ts +93 -0
- package/src/route-renderer/orchestration/queued-boundary-runtime.service.js +155 -0
- package/src/route-renderer/orchestration/render-execution.service.d.ts +11 -71
- package/src/route-renderer/orchestration/render-execution.service.js +65 -80
- package/src/{eco/eco.utils.ts → route-renderer/orchestration/render-output.utils.d.ts} +10 -53
- package/src/route-renderer/orchestration/render-output.utils.js +65 -0
- package/src/route-renderer/orchestration/render-preparation.service.d.ts +2 -8
- package/src/route-renderer/orchestration/render-preparation.service.js +10 -17
- package/src/route-renderer/orchestration/template-serialization.d.ts +38 -0
- package/src/route-renderer/orchestration/template-serialization.js +45 -0
- package/src/route-renderer/page-loading/dependency-resolver.d.ts +2 -2
- package/src/route-renderer/page-loading/dependency-resolver.js +10 -8
- package/src/route-renderer/page-loading/page-module-loader.d.ts +6 -4
- package/src/route-renderer/page-loading/page-module-loader.js +7 -5
- package/src/route-renderer/route-renderer.d.ts +5 -3
- package/src/route-renderer/route-renderer.js +13 -3
- package/src/router/README.md +79 -8
- package/src/router/client/navigation-coordinator.js +2 -2
- package/src/router/server/fs-router-scanner.d.ts +1 -1
- package/src/router/server/fs-router-scanner.js +6 -1
- package/src/router/server/fs-router.d.ts +1 -1
- package/src/services/assets/asset-processing-service/asset-processing.service.d.ts +3 -3
- package/src/services/assets/asset-processing-service/asset-processing.service.js +6 -6
- package/src/services/assets/asset-processing-service/asset.factory.d.ts +1 -1
- package/src/services/assets/asset-processing-service/asset.factory.js +2 -2
- package/src/services/assets/asset-processing-service/index.d.ts +5 -5
- package/src/services/assets/asset-processing-service/index.js +5 -5
- package/src/services/assets/asset-processing-service/processor.interface.d.ts +2 -2
- package/src/services/assets/asset-processing-service/processor.registry.d.ts +2 -2
- package/src/services/assets/asset-processing-service/processors/base/base-processor.d.ts +1 -1
- package/src/services/assets/asset-processing-service/processors/base/base-processor.js +1 -1
- package/src/services/assets/asset-processing-service/processors/base/base-script-processor.d.ts +3 -3
- package/src/services/assets/asset-processing-service/processors/base/base-script-processor.js +2 -2
- package/src/services/assets/asset-processing-service/processors/index.d.ts +5 -5
- package/src/services/assets/asset-processing-service/processors/index.js +5 -5
- package/src/services/assets/asset-processing-service/processors/script/content-script.processor.d.ts +2 -2
- package/src/services/assets/asset-processing-service/processors/script/content-script.processor.js +1 -1
- package/src/services/assets/asset-processing-service/processors/script/file-script.processor.d.ts +4 -3
- package/src/services/assets/asset-processing-service/processors/script/file-script.processor.js +15 -3
- package/src/services/assets/asset-processing-service/processors/script/node-module-script.processor.d.ts +3 -3
- package/src/services/assets/asset-processing-service/processors/script/node-module-script.processor.js +1 -1
- package/src/services/assets/asset-processing-service/processors/stylesheet/content-stylesheet.processor.d.ts +2 -2
- package/src/services/assets/asset-processing-service/processors/stylesheet/content-stylesheet.processor.js +1 -1
- package/src/services/assets/asset-processing-service/processors/stylesheet/file-stylesheet.processor.d.ts +2 -2
- package/src/services/assets/asset-processing-service/processors/stylesheet/file-stylesheet.processor.js +1 -1
- package/src/services/assets/browser-bundle.service.d.ts +1 -1
- package/src/services/assets/browser-bundle.service.js +2 -2
- package/src/services/html/html-rewriter-provider.service.js +4 -1
- package/src/services/html/html-transformer.service.d.ts +2 -2
- package/src/services/html/html-transformer.service.js +4 -10
- package/src/services/invalidation/development-invalidation.service.d.ts +1 -1
- package/src/services/invalidation/development-invalidation.service.js +1 -0
- package/src/services/module-loading/app-module-loader.service.d.ts +25 -0
- package/src/services/module-loading/app-module-loader.service.js +31 -0
- package/src/services/module-loading/app-server-module-transpiler.service.d.ts +9 -1
- package/src/services/module-loading/app-server-module-transpiler.service.js +77 -2
- package/src/services/module-loading/host-module-loader-registry.d.ts +4 -0
- package/src/services/module-loading/host-module-loader-registry.js +15 -0
- package/src/services/module-loading/module-loading-types.d.ts +2 -0
- package/src/{adapters/node/bootstrap-dependency-resolver.d.ts → services/module-loading/node-bootstrap-plugin.d.ts} +2 -24
- package/src/{adapters/node/bootstrap-dependency-resolver.js → services/module-loading/node-bootstrap-plugin.js} +42 -22
- package/src/services/module-loading/page-module-import.service.d.ts +4 -0
- package/src/services/module-loading/page-module-import.service.js +38 -9
- package/src/services/module-loading/server-module-transpiler.service.d.ts +3 -0
- package/src/services/module-loading/server-module-transpiler.service.js +4 -1
- package/src/services/runtime-state/dev-graph.service.d.ts +6 -6
- package/src/services/runtime-state/dev-graph.service.js +10 -10
- package/src/services/runtime-state/entrypoint-dependency-graph.service.d.ts +1 -1
- package/src/services/runtime-state/runtime-specifier-registry.service.d.ts +1 -1
- package/src/services/runtime-state/server-invalidation-state.service.d.ts +1 -1
- package/src/static-site-generator/static-site-generator.d.ts +2 -2
- package/src/static-site-generator/static-site-generator.js +1 -1
- package/src/{internal-types.d.ts → types/internal-types.d.ts} +24 -14
- package/src/{public-types.d.ts → types/public-types.d.ts} +30 -14
- package/src/types/public-types.js +0 -0
- package/src/utils/html-escaping.d.ts +7 -0
- package/src/utils/html-escaping.js +6 -0
- package/src/utils/locals-utils.d.ts +1 -1
- package/src/utils/parse-cli-args.d.ts +4 -1
- package/src/utils/parse-cli-args.js +16 -1
- package/src/utils/resolve-work-dir.js +1 -1
- package/src/watchers/project-watcher.d.ts +4 -4
- package/src/watchers/project-watcher.js +4 -10
- package/src/watchers/project-watcher.test-helpers.d.ts +2 -2
- package/src/adapters/abstract/application-adapter.ts +0 -337
- package/src/adapters/abstract/router-adapter.ts +0 -30
- package/src/adapters/abstract/server-adapter.ts +0 -79
- package/src/adapters/bun/client-bridge.ts +0 -62
- package/src/adapters/bun/create-app.ts +0 -189
- package/src/adapters/bun/hmr-manager.ts +0 -409
- package/src/adapters/bun/index.ts +0 -2
- package/src/adapters/bun/server-adapter.ts +0 -499
- package/src/adapters/bun/server-lifecycle.ts +0 -124
- package/src/adapters/index.ts +0 -6
- package/src/adapters/node/bootstrap-dependency-resolver.ts +0 -301
- package/src/adapters/node/create-app.ts +0 -179
- package/src/adapters/node/index.d.ts +0 -6
- package/src/adapters/node/index.js +0 -11
- package/src/adapters/node/index.ts +0 -16
- package/src/adapters/node/node-client-bridge.ts +0 -79
- package/src/adapters/node/node-hmr-manager.ts +0 -381
- package/src/adapters/node/runtime-adapter.d.ts +0 -46
- package/src/adapters/node/runtime-adapter.js +0 -306
- package/src/adapters/node/runtime-adapter.ts +0 -439
- package/src/adapters/node/server-adapter.ts +0 -488
- package/src/adapters/node/static-content-server.ts +0 -239
- package/src/adapters/node/write-runtime-manifest.d.ts +0 -26
- package/src/adapters/node/write-runtime-manifest.js +0 -12
- package/src/adapters/node/write-runtime-manifest.ts +0 -38
- package/src/adapters/shared/api-response.ts +0 -104
- package/src/adapters/shared/application-adapter.ts +0 -199
- package/src/adapters/shared/define-api-handler.ts +0 -66
- package/src/adapters/shared/explicit-static-route-matcher.ts +0 -140
- package/src/adapters/shared/file-route-middleware-pipeline.ts +0 -127
- package/src/adapters/shared/fs-server-response-factory.ts +0 -118
- package/src/adapters/shared/fs-server-response-matcher.ts +0 -205
- package/src/adapters/shared/hmr-entrypoint-registrar.ts +0 -149
- package/src/adapters/shared/hmr-html-response.ts +0 -52
- package/src/adapters/shared/render-context.ts +0 -120
- package/src/adapters/shared/runtime-bootstrap.ts +0 -79
- package/src/adapters/shared/server-adapter.ts +0 -489
- package/src/adapters/shared/server-route-handler.ts +0 -153
- package/src/adapters/shared/server-static-builder.ts +0 -166
- package/src/build/build-adapter.ts +0 -361
- package/src/build/build-manifest.ts +0 -54
- package/src/build/build-types.ts +0 -83
- package/src/build/dev-build-coordinator.ts +0 -221
- package/src/build/esbuild-build-adapter.ts +0 -559
- package/src/build/runtime-build-executor.ts +0 -34
- package/src/build/runtime-specifier-alias-plugin.ts +0 -58
- package/src/config/config-builder.ts +0 -706
- package/src/constants.ts +0 -54
- package/src/create-app.ts +0 -87
- package/src/dev/sc-server.ts +0 -143
- package/src/eco/component-render-context.d.ts +0 -105
- package/src/eco/component-render-context.js +0 -87
- package/src/eco/component-render-context.ts +0 -224
- package/src/eco/eco.ts +0 -242
- package/src/eco/eco.types.ts +0 -221
- package/src/eco/global-injector-map.ts +0 -112
- package/src/eco/lazy-injector-map.ts +0 -120
- package/src/eco/module-dependencies.ts +0 -75
- package/src/errors/http-error.ts +0 -72
- package/src/errors/index.ts +0 -2
- package/src/errors/locals-access-error.ts +0 -7
- package/src/global/app-logger.ts +0 -4
- package/src/hmr/client/hmr-runtime.ts +0 -152
- package/src/hmr/hmr-strategy.ts +0 -172
- package/src/hmr/hmr.postcss.test.e2e.ts +0 -41
- package/src/hmr/hmr.test.e2e.ts +0 -66
- package/src/hmr/strategies/default-hmr-strategy.ts +0 -60
- package/src/hmr/strategies/js-hmr-strategy.ts +0 -320
- package/src/index.browser.ts +0 -3
- package/src/index.ts +0 -5
- package/src/integrations/ghtml/ghtml-renderer.ts +0 -96
- package/src/integrations/ghtml/ghtml.plugin.ts +0 -32
- package/src/internal-types.ts +0 -232
- package/src/plugins/alias-resolver-plugin.ts +0 -63
- package/src/plugins/eco-component-meta-plugin.ts +0 -481
- package/src/plugins/integration-plugin.ts +0 -226
- package/src/plugins/processor.ts +0 -240
- package/src/plugins/runtime-capability.ts +0 -14
- package/src/public-types.ts +0 -1317
- package/src/route-renderer/component-graph/component-graph-executor.d.ts +0 -32
- package/src/route-renderer/component-graph/component-graph-executor.js +0 -31
- package/src/route-renderer/component-graph/component-graph-executor.ts +0 -84
- package/src/route-renderer/component-graph/component-graph.d.ts +0 -42
- package/src/route-renderer/component-graph/component-graph.js +0 -72
- package/src/route-renderer/component-graph/component-graph.ts +0 -159
- package/src/route-renderer/component-graph/component-marker.d.ts +0 -52
- package/src/route-renderer/component-graph/component-marker.js +0 -46
- package/src/route-renderer/component-graph/component-marker.ts +0 -117
- package/src/route-renderer/component-graph/component-reference.d.ts +0 -10
- package/src/route-renderer/component-graph/component-reference.js +0 -19
- package/src/route-renderer/component-graph/component-reference.ts +0 -29
- package/src/route-renderer/component-graph/marker-graph-resolver.d.ts +0 -77
- package/src/route-renderer/component-graph/marker-graph-resolver.js +0 -95
- package/src/route-renderer/component-graph/marker-graph-resolver.ts +0 -155
- package/src/route-renderer/orchestration/integration-renderer.ts +0 -790
- package/src/route-renderer/orchestration/render-execution.service.ts +0 -230
- package/src/route-renderer/orchestration/render-preparation.service.ts +0 -476
- package/src/route-renderer/page-loading/dependency-resolver.ts +0 -612
- package/src/route-renderer/page-loading/page-module-loader.ts +0 -181
- package/src/route-renderer/route-renderer.ts +0 -115
- package/src/router/client/link-intent.test.browser.ts +0 -51
- package/src/router/client/link-intent.ts +0 -92
- package/src/router/client/navigation-coordinator.ts +0 -433
- package/src/router/server/fs-router-scanner.ts +0 -219
- package/src/router/server/fs-router.ts +0 -122
- package/src/services/assets/asset-processing-service/asset-processing.service.ts +0 -401
- package/src/services/assets/asset-processing-service/asset.factory.ts +0 -105
- package/src/services/assets/asset-processing-service/assets.types.ts +0 -113
- package/src/services/assets/asset-processing-service/browser-runtime-asset.factory.ts +0 -95
- package/src/services/assets/asset-processing-service/browser-runtime-entry.factory.ts +0 -78
- package/src/services/assets/asset-processing-service/index.ts +0 -5
- package/src/services/assets/asset-processing-service/processor.interface.ts +0 -27
- package/src/services/assets/asset-processing-service/processor.registry.ts +0 -18
- package/src/services/assets/asset-processing-service/processors/base/base-processor.ts +0 -82
- package/src/services/assets/asset-processing-service/processors/base/base-script-processor.ts +0 -95
- package/src/services/assets/asset-processing-service/processors/index.ts +0 -5
- package/src/services/assets/asset-processing-service/processors/script/content-script.processor.ts +0 -66
- package/src/services/assets/asset-processing-service/processors/script/file-script.processor.ts +0 -88
- package/src/services/assets/asset-processing-service/processors/script/node-module-script.processor.ts +0 -85
- package/src/services/assets/asset-processing-service/processors/stylesheet/content-stylesheet.processor.ts +0 -27
- package/src/services/assets/asset-processing-service/processors/stylesheet/file-stylesheet.processor.ts +0 -80
- package/src/services/assets/browser-bundle.service.ts +0 -53
- package/src/services/cache/cache.types.ts +0 -126
- package/src/services/cache/index.ts +0 -18
- package/src/services/cache/memory-cache-store.ts +0 -130
- package/src/services/cache/page-cache-service.ts +0 -202
- package/src/services/cache/page-request-cache-coordinator.service.ts +0 -131
- package/src/services/html/html-rewriter-provider.service.ts +0 -103
- package/src/services/html/html-transformer.service.ts +0 -279
- package/src/services/invalidation/development-invalidation.service.ts +0 -261
- package/src/services/module-loading/app-server-module-transpiler.service.ts +0 -52
- package/src/services/module-loading/page-module-import.service.ts +0 -200
- package/src/services/module-loading/server-loader.service.d.ts +0 -96
- package/src/services/module-loading/server-loader.service.js +0 -32
- package/src/services/module-loading/server-loader.service.ts +0 -130
- package/src/services/module-loading/server-module-transpiler.service.ts +0 -105
- package/src/services/runtime-manifest/node-runtime-manifest.service.d.ts +0 -35
- package/src/services/runtime-manifest/node-runtime-manifest.service.js +0 -60
- package/src/services/runtime-manifest/node-runtime-manifest.service.ts +0 -101
- package/src/services/runtime-state/dev-graph.service.ts +0 -217
- package/src/services/runtime-state/entrypoint-dependency-graph.service.ts +0 -136
- package/src/services/runtime-state/runtime-specifier-registry.service.ts +0 -96
- package/src/services/runtime-state/server-invalidation-state.service.ts +0 -68
- package/src/services/validation/schema-validation-service.ts +0 -204
- package/src/services/validation/standard-schema.types.ts +0 -68
- package/src/static-site-generator/static-site-generator.ts +0 -462
- package/src/utils/css.d.ts +0 -1
- package/src/utils/css.js +0 -7
- package/src/utils/css.ts +0 -5
- package/src/utils/deep-merge.ts +0 -47
- package/src/utils/hash.ts +0 -5
- package/src/utils/html.ts +0 -1
- package/src/utils/invariant.ts +0 -15
- package/src/utils/locals-utils.ts +0 -37
- package/src/utils/parse-cli-args.ts +0 -83
- package/src/utils/path-utils.module.ts +0 -14
- package/src/utils/resolve-work-dir.ts +0 -45
- package/src/utils/runtime.ts +0 -44
- package/src/utils/server-utils.module.ts +0 -67
- package/src/watchers/project-watcher.test-helpers.ts +0 -41
- package/src/watchers/project-watcher.ts +0 -363
- /package/src/{constants.d.ts → config/constants.d.ts} +0 -0
- /package/src/{constants.js → config/constants.js} +0 -0
- /package/src/{internal-types.js → services/module-loading/module-loading-types.js} +0 -0
- /package/src/{public-types.js → types/internal-types.js} +0 -0
|
@@ -1,381 +0,0 @@
|
|
|
1
|
-
import fs from 'node:fs';
|
|
2
|
-
import path from 'node:path';
|
|
3
|
-
import { RESOLVED_ASSETS_DIR } from '../../constants.ts';
|
|
4
|
-
import { getAppBuildExecutor } from '../../build/build-adapter.ts';
|
|
5
|
-
import type { DefaultHmrContext, EcoPagesAppConfig, IHmrManager, IClientBridge } from '../../internal-types.ts';
|
|
6
|
-
import type { EcoBuildPlugin } from '../../build/build-types.ts';
|
|
7
|
-
import { fileSystem } from '@ecopages/file-system';
|
|
8
|
-
import { HmrStrategyType, type HmrStrategy } from '../../hmr/hmr-strategy.ts';
|
|
9
|
-
import { DefaultHmrStrategy } from '../../hmr/strategies/default-hmr-strategy.ts';
|
|
10
|
-
import { JsHmrStrategy } from '../../hmr/strategies/js-hmr-strategy.ts';
|
|
11
|
-
import { appLogger } from '../../global/app-logger.ts';
|
|
12
|
-
import type { ClientBridgeEvent } from '../../public-types.ts';
|
|
13
|
-
import { HmrEntrypointRegistrar } from '../shared/hmr-entrypoint-registrar.ts';
|
|
14
|
-
import { BrowserBundleService } from '../../services/assets/browser-bundle.service.ts';
|
|
15
|
-
import { getAppServerModuleTranspiler } from '../../services/module-loading/app-server-module-transpiler.service.ts';
|
|
16
|
-
import {
|
|
17
|
-
getAppEntrypointDependencyGraph,
|
|
18
|
-
InMemoryEntrypointDependencyGraph,
|
|
19
|
-
setAppEntrypointDependencyGraph,
|
|
20
|
-
type EntrypointDependencyGraph,
|
|
21
|
-
} from '../../services/runtime-state/entrypoint-dependency-graph.service.ts';
|
|
22
|
-
import { getAppRuntimeSpecifierRegistry } from '../../services/runtime-state/runtime-specifier-registry.service.ts';
|
|
23
|
-
import type { ServerModuleTranspiler } from '../../services/module-loading/server-module-transpiler.service.ts';
|
|
24
|
-
import { resolveInternalExecutionDir, resolveInternalWorkDir } from '../../utils/resolve-work-dir.ts';
|
|
25
|
-
|
|
26
|
-
export interface NodeHmrManagerParams {
|
|
27
|
-
appConfig: EcoPagesAppConfig;
|
|
28
|
-
bridge: IClientBridge;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
type HandleFileChangeOptions = {
|
|
32
|
-
broadcast?: boolean;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Node development HMR manager.
|
|
37
|
-
*
|
|
38
|
-
* @remarks
|
|
39
|
-
* This manager owns three separate concerns:
|
|
40
|
-
* - runtime websocket event fanout
|
|
41
|
-
* - entrypoint registration and dedupe
|
|
42
|
-
* - strategy coordination for rebuilds and invalidation
|
|
43
|
-
*
|
|
44
|
-
* The strict page-entrypoint contract lives here: `registerEntrypoint()` is
|
|
45
|
-
* reserved for integration-owned page bundles, while generic script assets must
|
|
46
|
-
* go through `registerScriptEntrypoint()`.
|
|
47
|
-
*/
|
|
48
|
-
export class NodeHmrManager implements IHmrManager {
|
|
49
|
-
private static readonly entrypointRegistrationTimeoutMs = 4000;
|
|
50
|
-
public readonly appConfig: EcoPagesAppConfig;
|
|
51
|
-
private readonly bridge: IClientBridge;
|
|
52
|
-
private watchers = new Map<string, fs.FSWatcher>();
|
|
53
|
-
private watchedFiles = new Map<string, string>();
|
|
54
|
-
private entrypointRegistrations = new Map<string, Promise<string>>();
|
|
55
|
-
private distDir: string;
|
|
56
|
-
private plugins: EcoBuildPlugin[] = [];
|
|
57
|
-
private enabled = true;
|
|
58
|
-
private strategies: HmrStrategy[] = [];
|
|
59
|
-
private readonly entrypointRegistrar: HmrEntrypointRegistrar;
|
|
60
|
-
private readonly browserBundleService: BrowserBundleService;
|
|
61
|
-
private readonly entrypointDependencyGraph: EntrypointDependencyGraph;
|
|
62
|
-
private readonly runtimeSpecifierRegistry: ReturnType<typeof getAppRuntimeSpecifierRegistry>;
|
|
63
|
-
private readonly serverModuleTranspiler: ServerModuleTranspiler;
|
|
64
|
-
|
|
65
|
-
constructor({ appConfig, bridge }: NodeHmrManagerParams) {
|
|
66
|
-
this.appConfig = appConfig;
|
|
67
|
-
this.bridge = bridge;
|
|
68
|
-
this.distDir = path.join(resolveInternalWorkDir(this.appConfig), RESOLVED_ASSETS_DIR, '_hmr');
|
|
69
|
-
this.entrypointRegistrar = new HmrEntrypointRegistrar({
|
|
70
|
-
srcDir: this.appConfig.absolutePaths.srcDir,
|
|
71
|
-
distDir: this.distDir,
|
|
72
|
-
entrypointRegistrations: this.entrypointRegistrations,
|
|
73
|
-
watchedFiles: this.watchedFiles,
|
|
74
|
-
clearFailedRegistration: (entrypointPath) => this.clearFailedEntrypointRegistration(entrypointPath),
|
|
75
|
-
registrationTimeoutMs: NodeHmrManager.entrypointRegistrationTimeoutMs,
|
|
76
|
-
});
|
|
77
|
-
this.browserBundleService = new BrowserBundleService(appConfig);
|
|
78
|
-
const existingEntrypointDependencyGraph = getAppEntrypointDependencyGraph(appConfig);
|
|
79
|
-
this.entrypointDependencyGraph =
|
|
80
|
-
existingEntrypointDependencyGraph instanceof InMemoryEntrypointDependencyGraph
|
|
81
|
-
? existingEntrypointDependencyGraph
|
|
82
|
-
: new InMemoryEntrypointDependencyGraph();
|
|
83
|
-
setAppEntrypointDependencyGraph(this.appConfig, this.entrypointDependencyGraph);
|
|
84
|
-
this.runtimeSpecifierRegistry = getAppRuntimeSpecifierRegistry(this.appConfig);
|
|
85
|
-
this.serverModuleTranspiler = getAppServerModuleTranspiler(this.appConfig);
|
|
86
|
-
this.cleanDistDir();
|
|
87
|
-
this.initializeStrategies();
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* Ensures the HMR output directory exists.
|
|
92
|
-
*
|
|
93
|
-
* This must not remove the directory because multiple app processes
|
|
94
|
-
* can share the same dist path during e2e runs.
|
|
95
|
-
*/
|
|
96
|
-
private cleanDistDir(): void {
|
|
97
|
-
fileSystem.ensureDir(this.distDir);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* Returns whether the generic JS strategy is allowed to rebuild an entrypoint.
|
|
102
|
-
*
|
|
103
|
-
* @remarks
|
|
104
|
-
* Higher-priority integration strategies own framework page entrypoints. When
|
|
105
|
-
* one of them matches, the generic JS strategy must stay out of the way so a
|
|
106
|
-
* shared dependency invalidation does not overwrite framework-specific output.
|
|
107
|
-
*/
|
|
108
|
-
private shouldJsStrategyProcessEntrypoint(entrypointPath: string): boolean {
|
|
109
|
-
return !this.strategies.some((strategy) => {
|
|
110
|
-
if (strategy.type !== HmrStrategyType.INTEGRATION || strategy.priority <= HmrStrategyType.SCRIPT) {
|
|
111
|
-
return false;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
try {
|
|
115
|
-
return strategy.matches(entrypointPath);
|
|
116
|
-
} catch (error) {
|
|
117
|
-
appLogger.error(error);
|
|
118
|
-
return false;
|
|
119
|
-
}
|
|
120
|
-
});
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
private initializeStrategies(): void {
|
|
124
|
-
const jsContext = {
|
|
125
|
-
getWatchedFiles: () => this.watchedFiles,
|
|
126
|
-
getSpecifierMap: () => this.runtimeSpecifierRegistry.getAll(),
|
|
127
|
-
getDistDir: () => this.distDir,
|
|
128
|
-
getPlugins: () => this.plugins,
|
|
129
|
-
getSrcDir: () => this.appConfig.absolutePaths.srcDir,
|
|
130
|
-
getPagesDir: () => this.appConfig.absolutePaths.pagesDir,
|
|
131
|
-
getLayoutsDir: () => this.appConfig.absolutePaths.layoutsDir,
|
|
132
|
-
getTemplateExtensions: () => this.appConfig.templatesExt,
|
|
133
|
-
getBrowserBundleService: () => this.browserBundleService,
|
|
134
|
-
getEntrypointDependencyGraph: () => this.entrypointDependencyGraph,
|
|
135
|
-
shouldProcessEntrypoint: (entrypointPath: string) => this.shouldJsStrategyProcessEntrypoint(entrypointPath),
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
this.strategies = [new JsHmrStrategy(jsContext), new DefaultHmrStrategy()];
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
public registerStrategy(strategy: HmrStrategy): void {
|
|
142
|
-
this.strategies.push(strategy);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
public setPlugins(plugins: EcoBuildPlugin[]): void {
|
|
146
|
-
this.plugins = [...plugins];
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
public setEnabled(enabled: boolean): void {
|
|
150
|
-
this.enabled = enabled;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
public isEnabled(): boolean {
|
|
154
|
-
return this.enabled;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Registers runtime bare-specifier mappings exposed by integrations.
|
|
159
|
-
*
|
|
160
|
-
* @remarks
|
|
161
|
-
* These mappings are consumed by framework-owned HMR strategies such as the
|
|
162
|
-
* React integration strategy when they rewrite browser bundles. The registry
|
|
163
|
-
* stays generic so the same mappings can support broader import-map-style
|
|
164
|
-
* runtime features later without moving integration semantics into core.
|
|
165
|
-
*/
|
|
166
|
-
public registerSpecifierMap(map: Record<string, string>): void {
|
|
167
|
-
this.runtimeSpecifierRegistry.register(map);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
public async buildRuntime(): Promise<void> {
|
|
171
|
-
const runtimeSource = path.resolve(import.meta.dirname, '../../hmr/client/hmr-runtime.ts');
|
|
172
|
-
|
|
173
|
-
try {
|
|
174
|
-
const result = await this.browserBundleService.bundle({
|
|
175
|
-
profile: 'hmr-runtime',
|
|
176
|
-
entrypoints: [runtimeSource],
|
|
177
|
-
outdir: this.distDir,
|
|
178
|
-
naming: '_hmr_runtime.js',
|
|
179
|
-
minify: false,
|
|
180
|
-
plugins: this.plugins,
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
if (!result.success) {
|
|
184
|
-
this.enabled = false;
|
|
185
|
-
appLogger.error('[HMR] Failed to build runtime script; continuing with HMR disabled.', result.logs);
|
|
186
|
-
}
|
|
187
|
-
} catch (error) {
|
|
188
|
-
this.enabled = false;
|
|
189
|
-
appLogger.error('[HMR] Failed to build runtime script; continuing with HMR disabled.', error);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
public getRuntimePath(): string {
|
|
194
|
-
return path.join(this.distDir, '_hmr_runtime.js');
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
public broadcast(event: ClientBridgeEvent) {
|
|
198
|
-
appLogger.debug(
|
|
199
|
-
`[HMR] Broadcasting ${event.type} event, path=${event.path || 'all'}, subscribers=${this.bridge.subscriberCount}`,
|
|
200
|
-
);
|
|
201
|
-
this.bridge.broadcast(event);
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
public async handleFileChange(filePath: string, options: HandleFileChangeOptions = {}): Promise<void> {
|
|
205
|
-
const sorted = [...this.strategies].sort((a, b) => b.priority - a.priority);
|
|
206
|
-
const strategy = sorted.find((s) => {
|
|
207
|
-
try {
|
|
208
|
-
return s.matches(filePath);
|
|
209
|
-
} catch (err) {
|
|
210
|
-
appLogger.error(err);
|
|
211
|
-
return false;
|
|
212
|
-
}
|
|
213
|
-
});
|
|
214
|
-
|
|
215
|
-
if (!strategy) {
|
|
216
|
-
appLogger.warn(`[HMR] No strategy found for ${filePath}`);
|
|
217
|
-
return;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
appLogger.debug(`[NodeHmrManager] Selected strategy: ${strategy.constructor.name}`);
|
|
221
|
-
|
|
222
|
-
const action = await strategy.process(filePath);
|
|
223
|
-
const shouldBroadcast = options.broadcast ?? true;
|
|
224
|
-
|
|
225
|
-
if (shouldBroadcast && action.type === 'broadcast') {
|
|
226
|
-
if (action.events) {
|
|
227
|
-
for (const event of action.events) {
|
|
228
|
-
this.broadcast(event);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
public getOutputUrl(entrypointPath: string): string | undefined {
|
|
235
|
-
return this.watchedFiles.get(entrypointPath);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
public getWatchedFiles(): Map<string, string> {
|
|
239
|
-
return this.watchedFiles;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
public getSpecifierMap(): Map<string, string> {
|
|
243
|
-
return this.runtimeSpecifierRegistry.getAll();
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
public getDistDir(): string {
|
|
247
|
-
return this.distDir;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
public getPlugins(): EcoBuildPlugin[] {
|
|
251
|
-
return this.plugins;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
public getDefaultContext(): DefaultHmrContext {
|
|
255
|
-
return {
|
|
256
|
-
getWatchedFiles: () => this.watchedFiles,
|
|
257
|
-
getSpecifierMap: () => this.runtimeSpecifierRegistry.getAll(),
|
|
258
|
-
getDistDir: () => this.distDir,
|
|
259
|
-
getPlugins: () => this.plugins,
|
|
260
|
-
getSrcDir: () => this.appConfig.absolutePaths.srcDir,
|
|
261
|
-
getLayoutsDir: () => this.appConfig.absolutePaths.layoutsDir,
|
|
262
|
-
getPagesDir: () => this.appConfig.absolutePaths.pagesDir,
|
|
263
|
-
getBuildExecutor: () => getAppBuildExecutor(this.appConfig),
|
|
264
|
-
getBrowserBundleService: () => this.browserBundleService,
|
|
265
|
-
importServerModule: async <T>(filePath: string) =>
|
|
266
|
-
await this.serverModuleTranspiler.importModule<T>({
|
|
267
|
-
filePath,
|
|
268
|
-
outdir: path.join(resolveInternalExecutionDir(this.appConfig), '.server-modules'),
|
|
269
|
-
externalPackages: true,
|
|
270
|
-
}),
|
|
271
|
-
};
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
private clearFailedEntrypointRegistration(entrypointPath: string): void {
|
|
275
|
-
this.watchedFiles.delete(entrypointPath);
|
|
276
|
-
this.entrypointDependencyGraph.clearEntrypointDependencies(entrypointPath);
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* Registers one integration-owned page entrypoint.
|
|
281
|
-
*
|
|
282
|
-
* @remarks
|
|
283
|
-
* Concurrent callers share one in-flight registration. The registration is
|
|
284
|
-
* removed from the dedupe map once it resolves or fails so later requests do
|
|
285
|
-
* not inherit stale state.
|
|
286
|
-
*/
|
|
287
|
-
public async registerEntrypoint(entrypointPath: string): Promise<string> {
|
|
288
|
-
return await this.entrypointRegistrar.registerEntrypoint(entrypointPath, {
|
|
289
|
-
emit: async (normalizedEntrypoint, outputPath) =>
|
|
290
|
-
await this.emitStrictEntrypoint(normalizedEntrypoint, outputPath),
|
|
291
|
-
getMissingOutputError: (normalizedEntrypoint, outputPath) =>
|
|
292
|
-
new Error(
|
|
293
|
-
`[HMR] Integration failed to emit entrypoint ${normalizedEntrypoint} to ${outputPath}. Page entrypoints must be produced by their owning integration.`,
|
|
294
|
-
),
|
|
295
|
-
});
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
/**
|
|
299
|
-
* Registers one generic script entrypoint.
|
|
300
|
-
*
|
|
301
|
-
* @remarks
|
|
302
|
-
* This path is intentionally separate from page entrypoints so non-framework
|
|
303
|
-
* scripts can still use the generic build fallback without weakening the page
|
|
304
|
-
* ownership contract.
|
|
305
|
-
*/
|
|
306
|
-
public async registerScriptEntrypoint(entrypointPath: string): Promise<string> {
|
|
307
|
-
return await this.entrypointRegistrar.registerEntrypoint(entrypointPath, {
|
|
308
|
-
emit: async (normalizedEntrypoint, outputPath) =>
|
|
309
|
-
await this.emitScriptEntrypoint(normalizedEntrypoint, outputPath),
|
|
310
|
-
getMissingOutputError: (normalizedEntrypoint) =>
|
|
311
|
-
new Error(`[HMR] Failed to register script entrypoint: ${normalizedEntrypoint}`),
|
|
312
|
-
});
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/**
|
|
316
|
-
* Performs strict integration-owned entrypoint registration for one normalized source path.
|
|
317
|
-
*
|
|
318
|
-
* @remarks
|
|
319
|
-
* The flow is:
|
|
320
|
-
* 1. Reserve the output URL in the watched map.
|
|
321
|
-
* 2. Remove any stale emitted file from an earlier process or failed build.
|
|
322
|
-
* 3. Let the strategy chain try to emit the entrypoint without broadcasting.
|
|
323
|
-
* 4. Fail if the owning integration did not emit the expected output.
|
|
324
|
-
*/
|
|
325
|
-
private async emitStrictEntrypoint(entrypointPath: string, _outputPath: string): Promise<void> {
|
|
326
|
-
await this.handleFileChange(entrypointPath, { broadcast: false });
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
/**
|
|
330
|
-
* Performs registration for a generic script asset.
|
|
331
|
-
*
|
|
332
|
-
* @remarks
|
|
333
|
-
* The manager first gives registered strategies a chance to emit the file so
|
|
334
|
-
* processor-owned or integration-owned behavior can still participate. Only
|
|
335
|
-
* when no output exists does it issue the generic build.
|
|
336
|
-
*/
|
|
337
|
-
private async emitScriptEntrypoint(entrypointPath: string, outputPath: string): Promise<void> {
|
|
338
|
-
const naming = path.relative(this.distDir, outputPath).split(path.sep).join('/');
|
|
339
|
-
|
|
340
|
-
await this.handleFileChange(entrypointPath, { broadcast: false });
|
|
341
|
-
|
|
342
|
-
if (!fileSystem.exists(outputPath)) {
|
|
343
|
-
const buildResult = await this.browserBundleService.bundle({
|
|
344
|
-
profile: 'hmr-entrypoint',
|
|
345
|
-
entrypoints: [entrypointPath],
|
|
346
|
-
outdir: this.distDir,
|
|
347
|
-
naming,
|
|
348
|
-
minify: false,
|
|
349
|
-
plugins: this.plugins,
|
|
350
|
-
});
|
|
351
|
-
|
|
352
|
-
if (!buildResult.success) {
|
|
353
|
-
appLogger.error(
|
|
354
|
-
`[HMR] Generic script entrypoint build failed for ${entrypointPath}:`,
|
|
355
|
-
buildResult.logs,
|
|
356
|
-
);
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
/**
|
|
362
|
-
* Stops active watchers and releases retained registration state.
|
|
363
|
-
*
|
|
364
|
-
* @remarks
|
|
365
|
-
* The manager intentionally does not remove emitted `_hmr` files from disk
|
|
366
|
-
* because multiple app processes may share the same dist directory during test
|
|
367
|
-
* runs. It does clear in-memory indexes so old entrypoints, dependencies, and
|
|
368
|
-
* specifier maps cannot leak across a reused manager instance.
|
|
369
|
-
*/
|
|
370
|
-
public stop() {
|
|
371
|
-
this.entrypointRegistrations.clear();
|
|
372
|
-
for (const watcher of this.watchers.values()) {
|
|
373
|
-
watcher.close();
|
|
374
|
-
}
|
|
375
|
-
this.watchers.clear();
|
|
376
|
-
this.watchedFiles.clear();
|
|
377
|
-
this.runtimeSpecifierRegistry.clear();
|
|
378
|
-
this.entrypointDependencyGraph.reset();
|
|
379
|
-
this.plugins = [];
|
|
380
|
-
}
|
|
381
|
-
}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import type { EcoPagesAppConfig } from '../../internal-types.js';
|
|
2
|
-
import { type NodeRuntimeManifest } from '../../services/runtime-manifest/node-runtime-manifest.service.js';
|
|
3
|
-
/**
|
|
4
|
-
* Host-to-adapter handoff contract for the Node thin-host runtime.
|
|
5
|
-
*
|
|
6
|
-
* @remarks
|
|
7
|
-
* The thin host is responsible only for validating the persisted manifest,
|
|
8
|
-
* capturing process-level launch context, and passing those values into the
|
|
9
|
-
* adapter. All framework bootstrap work begins after this handoff.
|
|
10
|
-
*/
|
|
11
|
-
export interface NodeRuntimeStartOptions {
|
|
12
|
-
manifest: NodeRuntimeManifest;
|
|
13
|
-
workingDirectory: string;
|
|
14
|
-
cliArgs: string[];
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Runtime session state produced after the adapter has loaded the app through
|
|
18
|
-
* the framework-owned loader path.
|
|
19
|
-
*/
|
|
20
|
-
export interface LoadedAppRuntime {
|
|
21
|
-
manifest: NodeRuntimeManifest;
|
|
22
|
-
workingDirectory: string;
|
|
23
|
-
entryModulePath: string;
|
|
24
|
-
appConfig: EcoPagesAppConfig;
|
|
25
|
-
entryModule: unknown;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Live Node thin-host runtime session.
|
|
29
|
-
*/
|
|
30
|
-
export interface NodeRuntimeSession {
|
|
31
|
-
loadApp(): Promise<LoadedAppRuntime>;
|
|
32
|
-
invalidate(changedFiles: string[]): Promise<void>;
|
|
33
|
-
dispose(): Promise<void>;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Adapter boundary created by the thin host after manifest validation.
|
|
37
|
-
*/
|
|
38
|
-
export interface NodeRuntimeAdapter {
|
|
39
|
-
start(options: NodeRuntimeStartOptions): Promise<NodeRuntimeSession>;
|
|
40
|
-
}
|
|
41
|
-
/**
|
|
42
|
-
* Validates and narrows the persisted Node runtime manifest used by the thin
|
|
43
|
-
* host handoff.
|
|
44
|
-
*/
|
|
45
|
-
export declare function assertNodeRuntimeManifest(manifest: unknown): NodeRuntimeManifest;
|
|
46
|
-
export declare function createNodeRuntimeAdapter(): NodeRuntimeAdapter;
|