@nativescript/vite 8.0.0-alpha.5 → 8.0.0-alpha.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -11
- package/bin/cli.cjs +8 -14
- package/configuration/angular.d.ts +34 -1
- package/configuration/angular.js +376 -165
- package/configuration/angular.js.map +1 -1
- package/configuration/base.js +241 -51
- package/configuration/base.js.map +1 -1
- package/configuration/javascript.js +14 -93
- package/configuration/javascript.js.map +1 -1
- package/configuration/react.js +41 -73
- package/configuration/react.js.map +1 -1
- package/configuration/solid.js +51 -6
- package/configuration/solid.js.map +1 -1
- package/configuration/typescript.js +12 -93
- package/configuration/typescript.js.map +1 -1
- package/helpers/app-components.d.ts +2 -1
- package/helpers/app-components.js.map +1 -1
- package/helpers/app-css-state.d.ts +8 -0
- package/helpers/app-css-state.js +8 -0
- package/helpers/app-css-state.js.map +1 -0
- package/helpers/bundler-context.d.ts +11 -0
- package/helpers/bundler-context.js +71 -0
- package/helpers/bundler-context.js.map +1 -0
- package/helpers/cli-flags.d.ts +12 -0
- package/helpers/cli-flags.js +34 -0
- package/helpers/cli-flags.js.map +1 -1
- package/helpers/css-platform-plugin.d.ts +14 -0
- package/helpers/css-platform-plugin.js +43 -25
- package/helpers/css-platform-plugin.js.map +1 -1
- package/helpers/dev-host.d.ts +360 -0
- package/helpers/dev-host.js +694 -0
- package/helpers/dev-host.js.map +1 -0
- package/helpers/dynamic-import-plugin.js +1 -1
- package/helpers/dynamic-import-plugin.js.map +1 -1
- package/helpers/esbuild-platform-resolver.js +4 -1
- package/helpers/esbuild-platform-resolver.js.map +1 -1
- package/helpers/external-configs.d.ts +10 -12
- package/helpers/external-configs.js +58 -35
- package/helpers/external-configs.js.map +1 -1
- package/helpers/global-defines.d.ts +142 -0
- package/helpers/global-defines.js +213 -11
- package/helpers/global-defines.js.map +1 -1
- package/helpers/hmr-scope.d.ts +26 -0
- package/helpers/hmr-scope.js +67 -0
- package/helpers/hmr-scope.js.map +1 -0
- package/helpers/init.js +0 -18
- package/helpers/init.js.map +1 -1
- package/helpers/logging.d.ts +1 -0
- package/helpers/logging.js +65 -4
- package/helpers/logging.js.map +1 -1
- package/helpers/main-entry.d.ts +3 -1
- package/helpers/main-entry.js +301 -53
- package/helpers/main-entry.js.map +1 -1
- package/helpers/nativeclass-esbuild-plugin.d.ts +2 -1
- package/helpers/nativeclass-esbuild-plugin.js.map +1 -1
- package/helpers/nativeclass-transform.js +5 -6
- package/helpers/nativeclass-transform.js.map +1 -1
- package/helpers/nativeclass-transformer-plugin.d.ts +9 -2
- package/helpers/nativeclass-transformer-plugin.js +157 -14
- package/helpers/nativeclass-transformer-plugin.js.map +1 -1
- package/helpers/nativescript-package-resolver.js +10 -62
- package/helpers/nativescript-package-resolver.js.map +1 -1
- package/helpers/normalize-id.d.ts +42 -0
- package/helpers/normalize-id.js +60 -0
- package/helpers/normalize-id.js.map +1 -0
- package/helpers/ns-core-url.d.ts +29 -7
- package/helpers/ns-core-url.js +69 -12
- package/helpers/ns-core-url.js.map +1 -1
- package/helpers/optimize-deps.d.ts +16 -0
- package/helpers/optimize-deps.js +17 -0
- package/helpers/optimize-deps.js.map +1 -0
- package/helpers/package-platform-aliases.js +34 -49
- package/helpers/package-platform-aliases.js.map +1 -1
- package/helpers/platform-types.d.ts +2 -0
- package/helpers/platform-types.js +2 -0
- package/helpers/platform-types.js.map +1 -0
- package/helpers/postcss-platform-config.d.ts +17 -1
- package/helpers/postcss-platform-config.js +20 -37
- package/helpers/postcss-platform-config.js.map +1 -1
- package/helpers/project.d.ts +35 -0
- package/helpers/project.js +120 -2
- package/helpers/project.js.map +1 -1
- package/helpers/resolve-main-field-platform.d.ts +20 -0
- package/helpers/resolve-main-field-platform.js +49 -0
- package/helpers/resolve-main-field-platform.js.map +1 -0
- package/helpers/resolver.js +17 -2
- package/helpers/resolver.js.map +1 -1
- package/helpers/theme-core-plugins.js +1 -1
- package/helpers/theme-core-plugins.js.map +1 -1
- package/helpers/ts-config-paths.d.ts +14 -0
- package/helpers/ts-config-paths.js +90 -9
- package/helpers/ts-config-paths.js.map +1 -1
- package/helpers/typescript-check.d.ts +2 -1
- package/helpers/typescript-check.js +2 -2
- package/helpers/typescript-check.js.map +1 -1
- package/helpers/ui-registration.d.ts +21 -0
- package/helpers/ui-registration.js +156 -0
- package/helpers/ui-registration.js.map +1 -0
- package/helpers/utils.d.ts +9 -0
- package/helpers/utils.js +22 -2
- package/helpers/utils.js.map +1 -1
- package/helpers/workers.d.ts +20 -19
- package/helpers/workers.js +624 -4
- package/helpers/workers.js.map +1 -1
- package/hmr/client/css-handler.d.ts +2 -1
- package/hmr/client/css-handler.js +50 -26
- package/hmr/client/css-handler.js.map +1 -1
- package/hmr/client/css-update-overlay.d.ts +18 -0
- package/hmr/client/css-update-overlay.js +27 -0
- package/hmr/client/css-update-overlay.js.map +1 -0
- package/hmr/client/framework-client-strategy.d.ts +79 -0
- package/hmr/client/framework-client-strategy.js +19 -0
- package/hmr/client/framework-client-strategy.js.map +1 -0
- package/hmr/client/hmr-pending-overlay.d.ts +13 -0
- package/hmr/client/hmr-pending-overlay.js +60 -0
- package/hmr/client/hmr-pending-overlay.js.map +1 -0
- package/hmr/client/index.js +891 -220
- package/hmr/client/index.js.map +1 -1
- package/hmr/client/utils.d.ts +7 -1
- package/hmr/client/utils.js +207 -29
- package/hmr/client/utils.js.map +1 -1
- package/hmr/entry-runtime.d.ts +2 -1
- package/hmr/entry-runtime.js +256 -69
- package/hmr/entry-runtime.js.map +1 -1
- package/hmr/frameworks/angular/build/angular-linker.d.ts +12 -0
- package/hmr/frameworks/angular/build/angular-linker.js +109 -0
- package/hmr/frameworks/angular/build/angular-linker.js.map +1 -0
- package/hmr/frameworks/angular/build/inject-component-hmr-registration.d.ts +112 -0
- package/hmr/frameworks/angular/build/inject-component-hmr-registration.js +291 -0
- package/hmr/frameworks/angular/build/inject-component-hmr-registration.js.map +1 -0
- package/hmr/frameworks/angular/build/inject-hmr-vite-ignore.d.ts +75 -0
- package/hmr/frameworks/angular/build/inject-hmr-vite-ignore.js +221 -0
- package/hmr/frameworks/angular/build/inject-hmr-vite-ignore.js.map +1 -0
- package/{helpers/angular → hmr/frameworks/angular/build}/inline-decorator-component-templates.js +1 -170
- package/hmr/frameworks/angular/build/inline-decorator-component-templates.js.map +1 -0
- package/hmr/frameworks/angular/build/js-lexer.d.ts +4 -0
- package/{helpers/angular/synthesize-decorator-ctor-parameters.js → hmr/frameworks/angular/build/js-lexer.js} +22 -96
- package/hmr/frameworks/angular/build/js-lexer.js.map +1 -0
- package/hmr/frameworks/angular/build/shared-linker.d.ts +39 -0
- package/hmr/frameworks/angular/build/shared-linker.js +128 -0
- package/hmr/frameworks/angular/build/shared-linker.js.map +1 -0
- package/hmr/frameworks/angular/build/synthesize-decorator-ctor-parameters.js +88 -0
- package/hmr/frameworks/angular/build/synthesize-decorator-ctor-parameters.js.map +1 -0
- package/{helpers/angular → hmr/frameworks/angular/build}/synthesize-injectable-factories.js +1 -174
- package/hmr/frameworks/angular/build/synthesize-injectable-factories.js.map +1 -0
- package/{helpers/angular → hmr/frameworks/angular/build}/util.d.ts +1 -0
- package/hmr/frameworks/angular/build/util.js +155 -0
- package/hmr/frameworks/angular/build/util.js.map +1 -0
- package/hmr/frameworks/angular/client/index.d.ts +1 -0
- package/hmr/frameworks/angular/client/index.js +859 -21
- package/hmr/frameworks/angular/client/index.js.map +1 -1
- package/hmr/frameworks/angular/client/strategy.d.ts +9 -0
- package/hmr/frameworks/angular/client/strategy.js +19 -0
- package/hmr/frameworks/angular/client/strategy.js.map +1 -0
- package/hmr/frameworks/angular/server/angular-root-component.d.ts +79 -0
- package/hmr/frameworks/angular/server/angular-root-component.js +149 -0
- package/hmr/frameworks/angular/server/angular-root-component.js.map +1 -0
- package/hmr/frameworks/angular/server/linker.js +1 -4
- package/hmr/frameworks/angular/server/linker.js.map +1 -1
- package/hmr/frameworks/angular/server/strategy.js +460 -12
- package/hmr/frameworks/angular/server/strategy.js.map +1 -1
- package/hmr/{server → frameworks/angular/server}/websocket-angular-entry.js +2 -2
- package/hmr/frameworks/angular/server/websocket-angular-entry.js.map +1 -0
- package/hmr/{server → frameworks/angular/server}/websocket-angular-hot-update.d.ts +17 -11
- package/hmr/frameworks/angular/server/websocket-angular-hot-update.js +336 -0
- package/hmr/frameworks/angular/server/websocket-angular-hot-update.js.map +1 -0
- package/hmr/frameworks/react/server/strategy.d.ts +2 -0
- package/hmr/frameworks/react/server/strategy.js +150 -0
- package/hmr/frameworks/react/server/strategy.js.map +1 -0
- package/hmr/frameworks/solid/build/solid-jsx-deps.d.ts +15 -0
- package/hmr/frameworks/solid/build/solid-jsx-deps.js +178 -0
- package/hmr/frameworks/solid/build/solid-jsx-deps.js.map +1 -0
- package/hmr/frameworks/solid/client/app-runtime.d.ts +54 -0
- package/hmr/frameworks/solid/client/app-runtime.js +184 -0
- package/hmr/frameworks/solid/client/app-runtime.js.map +1 -0
- package/hmr/frameworks/solid/server/strategy.js +291 -16
- package/hmr/frameworks/solid/server/strategy.js.map +1 -1
- package/hmr/frameworks/typescript/server/strategy.js +38 -14
- package/hmr/frameworks/typescript/server/strategy.js.map +1 -1
- package/hmr/frameworks/vue/client/dep-propagation.d.ts +36 -0
- package/hmr/frameworks/vue/client/dep-propagation.js +101 -0
- package/hmr/frameworks/vue/client/dep-propagation.js.map +1 -0
- package/hmr/frameworks/vue/client/index.d.ts +8 -0
- package/hmr/frameworks/vue/client/index.js +56 -243
- package/hmr/frameworks/vue/client/index.js.map +1 -1
- package/hmr/frameworks/vue/client/strategy.d.ts +33 -0
- package/hmr/frameworks/vue/client/strategy.js +157 -0
- package/hmr/frameworks/vue/client/strategy.js.map +1 -0
- package/hmr/frameworks/vue/client/vue-sfc-update-overlay.d.ts +49 -0
- package/hmr/frameworks/vue/client/vue-sfc-update-overlay.js +142 -0
- package/hmr/frameworks/vue/client/vue-sfc-update-overlay.js.map +1 -0
- package/hmr/frameworks/vue/server/sfc-route-assemble.d.ts +7 -0
- package/hmr/frameworks/vue/server/sfc-route-assemble.js +747 -0
- package/hmr/frameworks/vue/server/sfc-route-assemble.js.map +1 -0
- package/hmr/frameworks/vue/server/sfc-route-meta.d.ts +7 -0
- package/hmr/frameworks/vue/server/sfc-route-meta.js +80 -0
- package/hmr/frameworks/vue/server/sfc-route-meta.js.map +1 -0
- package/hmr/frameworks/vue/server/sfc-route-serve.d.ts +8 -0
- package/hmr/frameworks/vue/server/sfc-route-serve.js +459 -0
- package/hmr/frameworks/vue/server/sfc-route-serve.js.map +1 -0
- package/hmr/frameworks/vue/server/sfc-route-shared.d.ts +38 -0
- package/hmr/frameworks/vue/server/sfc-route-shared.js +48 -0
- package/hmr/frameworks/vue/server/sfc-route-shared.js.map +1 -0
- package/hmr/frameworks/vue/server/strategy.d.ts +35 -0
- package/hmr/frameworks/vue/server/strategy.js +278 -1
- package/hmr/frameworks/vue/server/strategy.js.map +1 -1
- package/hmr/frameworks/vue/server/websocket-sfc.d.ts +15 -0
- package/hmr/frameworks/vue/server/websocket-sfc.js +20 -0
- package/hmr/frameworks/vue/server/websocket-sfc.js.map +1 -0
- package/hmr/helpers/ast-normalizer.d.ts +3 -1
- package/hmr/helpers/ast-normalizer.js +77 -10
- package/hmr/helpers/ast-normalizer.js.map +1 -1
- package/hmr/helpers/cjs-named-exports.d.ts +23 -0
- package/hmr/helpers/cjs-named-exports.js +152 -0
- package/hmr/helpers/cjs-named-exports.js.map +1 -0
- package/hmr/helpers/package-exports.d.ts +16 -0
- package/hmr/helpers/package-exports.js +396 -0
- package/hmr/helpers/package-exports.js.map +1 -0
- package/hmr/server/constants.js +20 -5
- package/hmr/server/constants.js.map +1 -1
- package/hmr/server/core-sanitize.d.ts +86 -7
- package/hmr/server/core-sanitize.js +170 -45
- package/hmr/server/core-sanitize.js.map +1 -1
- package/hmr/server/device-transform-helpers.d.ts +24 -0
- package/hmr/server/device-transform-helpers.js +408 -0
- package/hmr/server/device-transform-helpers.js.map +1 -0
- package/hmr/server/framework-strategy.d.ts +108 -11
- package/hmr/server/hmr-module-graph.d.ts +37 -0
- package/hmr/server/hmr-module-graph.js +214 -0
- package/hmr/server/hmr-module-graph.js.map +1 -0
- package/hmr/server/import-map.d.ts +11 -2
- package/hmr/server/import-map.js +92 -45
- package/hmr/server/import-map.js.map +1 -1
- package/hmr/server/index.js +7 -16
- package/hmr/server/index.js.map +1 -1
- package/hmr/server/ns-core-cjs-shape.d.ts +2 -4
- package/hmr/server/ns-core-cjs-shape.js +4 -6
- package/hmr/server/ns-core-cjs-shape.js.map +1 -1
- package/hmr/server/ns-rt-bridge.d.ts +51 -0
- package/hmr/server/ns-rt-bridge.js +131 -0
- package/hmr/server/ns-rt-bridge.js.map +1 -0
- package/hmr/server/ns-rt-route.d.ts +5 -0
- package/hmr/server/ns-rt-route.js +38 -0
- package/hmr/server/ns-rt-route.js.map +1 -0
- package/hmr/server/perf-instrumentation.d.ts +114 -0
- package/hmr/server/perf-instrumentation.js +197 -0
- package/hmr/server/perf-instrumentation.js.map +1 -0
- package/hmr/server/process-code-for-device.d.ts +14 -0
- package/hmr/server/process-code-for-device.js +699 -0
- package/hmr/server/process-code-for-device.js.map +1 -0
- package/hmr/server/require-guard.d.ts +1 -0
- package/hmr/server/require-guard.js +12 -0
- package/hmr/server/require-guard.js.map +1 -0
- package/hmr/server/rewrite-imports.d.ts +2 -0
- package/hmr/server/rewrite-imports.js +630 -0
- package/hmr/server/rewrite-imports.js.map +1 -0
- package/hmr/server/route-helpers.d.ts +7 -0
- package/hmr/server/route-helpers.js +13 -0
- package/hmr/server/route-helpers.js.map +1 -0
- package/hmr/server/server-origin.d.ts +2 -0
- package/hmr/server/server-origin.js +83 -0
- package/hmr/server/server-origin.js.map +1 -0
- package/hmr/server/shared-transform-request.js +13 -7
- package/hmr/server/shared-transform-request.js.map +1 -1
- package/hmr/server/transform-cache-invalidation.d.ts +37 -0
- package/hmr/server/transform-cache-invalidation.js +156 -0
- package/hmr/server/transform-cache-invalidation.js.map +1 -0
- package/hmr/server/vendor-bare-module-shims.d.ts +4 -0
- package/hmr/server/vendor-bare-module-shims.js +80 -0
- package/hmr/server/vendor-bare-module-shims.js.map +1 -0
- package/hmr/server/vite-plugin.js +78 -42
- package/hmr/server/vite-plugin.js.map +1 -1
- package/hmr/server/websocket-core-bridge.d.ts +45 -4
- package/hmr/server/websocket-core-bridge.js +50 -48
- package/hmr/server/websocket-core-bridge.js.map +1 -1
- package/hmr/server/websocket-css-hot-update.d.ts +33 -0
- package/hmr/server/websocket-css-hot-update.js +65 -0
- package/hmr/server/websocket-css-hot-update.js.map +1 -0
- package/hmr/server/websocket-device-transform.d.ts +3 -0
- package/hmr/server/websocket-device-transform.js +7 -0
- package/hmr/server/websocket-device-transform.js.map +1 -0
- package/hmr/server/websocket-graph-upsert.d.ts +15 -0
- package/hmr/server/websocket-graph-upsert.js +20 -0
- package/hmr/server/websocket-graph-upsert.js.map +1 -1
- package/hmr/server/websocket-hmr-pending.d.ts +37 -0
- package/hmr/server/websocket-hmr-pending.js +55 -0
- package/hmr/server/websocket-hmr-pending.js.map +1 -0
- package/hmr/server/websocket-hot-update.d.ts +77 -0
- package/hmr/server/websocket-hot-update.js +360 -0
- package/hmr/server/websocket-hot-update.js.map +1 -0
- package/hmr/server/websocket-import-map-route.d.ts +15 -0
- package/hmr/server/websocket-import-map-route.js +50 -0
- package/hmr/server/websocket-import-map-route.js.map +1 -0
- package/hmr/server/websocket-module-bindings.js +3 -3
- package/hmr/server/websocket-module-bindings.js.map +1 -1
- package/hmr/server/websocket-module-specifiers.d.ts +66 -2
- package/hmr/server/websocket-module-specifiers.js +191 -20
- package/hmr/server/websocket-module-specifiers.js.map +1 -1
- package/hmr/server/websocket-ns-core.d.ts +21 -0
- package/hmr/server/websocket-ns-core.js +311 -0
- package/hmr/server/websocket-ns-core.js.map +1 -0
- package/hmr/server/websocket-ns-entry.d.ts +21 -0
- package/hmr/server/websocket-ns-entry.js +164 -0
- package/hmr/server/websocket-ns-entry.js.map +1 -0
- package/hmr/server/websocket-ns-m-paths.d.ts +1 -1
- package/hmr/server/websocket-ns-m-paths.js +58 -13
- package/hmr/server/websocket-ns-m-paths.js.map +1 -1
- package/hmr/server/websocket-ns-m-request.d.ts +11 -1
- package/hmr/server/websocket-ns-m-request.js +18 -25
- package/hmr/server/websocket-ns-m-request.js.map +1 -1
- package/hmr/server/websocket-ns-m.d.ts +33 -0
- package/hmr/server/websocket-ns-m.js +752 -0
- package/hmr/server/websocket-ns-m.js.map +1 -0
- package/hmr/server/websocket-served-module-helpers.d.ts +49 -3
- package/hmr/server/websocket-served-module-helpers.js +403 -87
- package/hmr/server/websocket-served-module-helpers.js.map +1 -1
- package/hmr/server/websocket-txn.js +2 -8
- package/hmr/server/websocket-txn.js.map +1 -1
- package/hmr/server/websocket-vendor-unifier.d.ts +0 -1
- package/hmr/server/websocket-vendor-unifier.js +4 -9
- package/hmr/server/websocket-vendor-unifier.js.map +1 -1
- package/hmr/server/websocket.d.ts +8 -39
- package/hmr/server/websocket.js +608 -6300
- package/hmr/server/websocket.js.map +1 -1
- package/hmr/shared/ns-globals.d.ts +118 -0
- package/hmr/shared/ns-globals.js +29 -0
- package/hmr/shared/ns-globals.js.map +1 -0
- package/hmr/shared/protocol.d.ts +145 -0
- package/hmr/shared/protocol.js +28 -0
- package/hmr/shared/protocol.js.map +1 -0
- package/hmr/shared/runtime/boot-placeholder-ui.d.ts +69 -0
- package/hmr/shared/runtime/boot-placeholder-ui.js +101 -0
- package/hmr/shared/runtime/boot-placeholder-ui.js.map +1 -0
- package/hmr/shared/runtime/boot-progress.d.ts +44 -0
- package/hmr/shared/runtime/boot-progress.js +133 -0
- package/hmr/shared/runtime/boot-progress.js.map +1 -0
- package/hmr/shared/runtime/boot-timeline.d.ts +18 -0
- package/hmr/shared/runtime/boot-timeline.js +42 -0
- package/hmr/shared/runtime/boot-timeline.js.map +1 -0
- package/hmr/shared/runtime/browser-runtime-contract.js.map +1 -1
- package/hmr/shared/runtime/dev-overlay-snapshots.d.ts +31 -0
- package/hmr/shared/runtime/dev-overlay-snapshots.js +324 -0
- package/hmr/shared/runtime/dev-overlay-snapshots.js.map +1 -0
- package/hmr/shared/runtime/dev-overlay.d.ts +119 -26
- package/hmr/shared/runtime/dev-overlay.js +1196 -262
- package/hmr/shared/runtime/dev-overlay.js.map +1 -1
- package/hmr/shared/runtime/global-scope.d.ts +18 -0
- package/hmr/shared/runtime/global-scope.js +21 -0
- package/hmr/shared/runtime/global-scope.js.map +1 -0
- package/hmr/shared/runtime/hooks.js +2 -1
- package/hmr/shared/runtime/hooks.js.map +1 -1
- package/hmr/shared/runtime/http-only-boot.js +7 -6
- package/hmr/shared/runtime/http-only-boot.js.map +1 -1
- package/hmr/shared/runtime/module-provenance.js +4 -6
- package/hmr/shared/runtime/module-provenance.js.map +1 -1
- package/hmr/shared/runtime/root-placeholder-view.d.ts +19 -0
- package/hmr/shared/runtime/root-placeholder-view.js +311 -0
- package/hmr/shared/runtime/root-placeholder-view.js.map +1 -0
- package/hmr/shared/runtime/root-placeholder.js +393 -200
- package/hmr/shared/runtime/root-placeholder.js.map +1 -1
- package/hmr/shared/runtime/session-bootstrap.js +168 -4
- package/hmr/shared/runtime/session-bootstrap.js.map +1 -1
- package/hmr/shared/runtime/vendor-bootstrap.js +3 -10
- package/hmr/shared/runtime/vendor-bootstrap.js.map +1 -1
- package/hmr/shared/vendor/manifest-collect.d.ts +4 -0
- package/hmr/shared/vendor/manifest-collect.js +549 -0
- package/hmr/shared/vendor/manifest-collect.js.map +1 -0
- package/hmr/shared/vendor/manifest-loader.d.ts +2 -1
- package/hmr/shared/vendor/manifest-loader.js +5 -3
- package/hmr/shared/vendor/manifest-loader.js.map +1 -1
- package/hmr/shared/vendor/manifest.d.ts +1 -7
- package/hmr/shared/vendor/manifest.js +84 -819
- package/hmr/shared/vendor/manifest.js.map +1 -1
- package/hmr/shared/vendor/vendor-device-shim.d.ts +1 -0
- package/hmr/shared/vendor/vendor-device-shim.js +208 -0
- package/hmr/shared/vendor/vendor-device-shim.js.map +1 -0
- package/hmr/shared/vendor/vendor-esbuild-plugins.d.ts +38 -0
- package/hmr/shared/vendor/vendor-esbuild-plugins.js +296 -0
- package/hmr/shared/vendor/vendor-esbuild-plugins.js.map +1 -0
- package/hmr/vendor-bootstrap.d.ts +1 -3
- package/hmr/vendor-bootstrap.js +4 -6
- package/hmr/vendor-bootstrap.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/package.json +61 -11
- package/runtime/core-aliases-early.js +25 -55
- package/runtime/core-aliases-early.js.map +1 -1
- package/shims/react-jsx-runtime.d.ts +4 -0
- package/shims/react-jsx-runtime.js +61 -0
- package/shims/react-jsx-runtime.js.map +1 -0
- package/helpers/angular/angular-linker.d.ts +0 -13
- package/helpers/angular/angular-linker.js +0 -194
- package/helpers/angular/angular-linker.js.map +0 -1
- package/helpers/angular/inline-decorator-component-templates.js.map +0 -1
- package/helpers/angular/shared-linker.d.ts +0 -11
- package/helpers/angular/shared-linker.js +0 -75
- package/helpers/angular/shared-linker.js.map +0 -1
- package/helpers/angular/synthesize-decorator-ctor-parameters.js.map +0 -1
- package/helpers/angular/synthesize-injectable-factories.js.map +0 -1
- package/helpers/angular/util.js +0 -67
- package/helpers/angular/util.js.map +0 -1
- package/helpers/prelink-angular.d.ts +0 -2
- package/helpers/prelink-angular.js +0 -117
- package/helpers/prelink-angular.js.map +0 -1
- package/hmr/server/websocket-angular-entry.js.map +0 -1
- package/hmr/server/websocket-angular-hot-update.js +0 -239
- package/hmr/server/websocket-angular-hot-update.js.map +0 -1
- package/hmr/server/websocket-ns-m-finalize.d.ts +0 -22
- package/hmr/server/websocket-ns-m-finalize.js +0 -88
- package/hmr/server/websocket-ns-m-finalize.js.map +0 -1
- package/hmr/server/websocket-runtime-compat.d.ts +0 -19
- package/hmr/server/websocket-runtime-compat.js +0 -286
- package/hmr/server/websocket-runtime-compat.js.map +0 -1
- package/hmr/server/websocket-vue-sfc.d.ts +0 -27
- package/hmr/server/websocket-vue-sfc.js +0 -1117
- package/hmr/server/websocket-vue-sfc.js.map +0 -1
- package/transformers/NativeClass/index.d.ts +0 -2
- package/transformers/NativeClass/index.js +0 -222
- package/transformers/NativeClass/index.js.map +0 -1
- /package/{helpers/angular → hmr/frameworks/angular/build}/inline-decorator-component-templates.d.ts +0 -0
- /package/{helpers/angular → hmr/frameworks/angular/build}/synthesize-decorator-ctor-parameters.d.ts +0 -0
- /package/{helpers/angular → hmr/frameworks/angular/build}/synthesize-injectable-factories.d.ts +0 -0
- /package/hmr/{server → frameworks/angular/server}/websocket-angular-entry.d.ts +0 -0
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import fs from 'fs';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
/**
|
|
4
|
+
* Why this helper exists
|
|
5
|
+
* ----------------------
|
|
6
|
+
*
|
|
7
|
+
* Vite's depscanner happily pre-bundles every bare specifier the app
|
|
8
|
+
* imports. For a Solid library that publishes pre-compiled-but-still-JSX
|
|
9
|
+
* files (e.g. `solid-navigation`'s `dist/src/*.jsx`), the pre-bundle output
|
|
10
|
+
* lands at `node_modules/.vite/deps/<pkg>.js` with the JSX intact —
|
|
11
|
+
* rolldown's depscanner doesn't run Solid's JSX transform (that lives in
|
|
12
|
+
* `vite-plugin-solid`'s `transform` hook, which only matches files whose
|
|
13
|
+
* id ends in `.jsx`/`.tsx`).
|
|
14
|
+
*
|
|
15
|
+
* Vite then runs `vite:import-analysis` on the `.js` output, hits the
|
|
16
|
+
* first JSX expression, and aborts the dev server's pre-transform with:
|
|
17
|
+
*
|
|
18
|
+
* Failed to parse source for import analysis because the content
|
|
19
|
+
* contains invalid JS syntax. If you are using JSX, make sure to
|
|
20
|
+
* name the file with the .jsx or .tsx extension.
|
|
21
|
+
* File: /…/.vite/deps/<pkg>.js:51:32
|
|
22
|
+
*
|
|
23
|
+
* The fix: when a project depends on a Solid library that ships `.jsx`
|
|
24
|
+
* (or `.tsx`) source files in its package directory, mark that package
|
|
25
|
+
* as `optimizeDeps.exclude` so Vite serves it through the regular dev
|
|
26
|
+
* pipeline, where `vite-plugin-solid`'s `transform` hook matches the
|
|
27
|
+
* original `.jsx` id and applies the Solid babel preset.
|
|
28
|
+
*
|
|
29
|
+
* Detection rules — biased toward false negatives so we never wrongly
|
|
30
|
+
* exclude a package that Vite must pre-bundle (esp. CJS-only deps that
|
|
31
|
+
* need esm interop). A package is excluded only when ALL of the
|
|
32
|
+
* following hold:
|
|
33
|
+
*
|
|
34
|
+
* 1. It declares `solid-js` or `@nativescript-community/solid-js` in
|
|
35
|
+
* `dependencies` / `peerDependencies` / `devDependencies`. This is
|
|
36
|
+
* a strong signal that the package's published artifacts are
|
|
37
|
+
* meant to be processed by a Solid-aware JSX transformer.
|
|
38
|
+
* 2. Its package directory contains at least one `.jsx` / `.tsx`
|
|
39
|
+
* source file under `dist` / `lib` / `build` / `es` / `esm` /
|
|
40
|
+
* `out` (the common published-output dirs) or directly at the
|
|
41
|
+
* package root. We deliberately skip `node_modules`, `src` (raw
|
|
42
|
+
* sources, not what `main` points to), and test dirs.
|
|
43
|
+
*
|
|
44
|
+
* Both checks are scoped to packages installed in the app's
|
|
45
|
+
* `node_modules` (plus the monorepo's hoisted `node_modules`, if any)
|
|
46
|
+
* — we never recurse into transitive nested copies, since those are
|
|
47
|
+
* also reachable from the same top-level scan once Vite resolves them.
|
|
48
|
+
*/
|
|
49
|
+
const PUBLISHED_OUTPUT_DIRS = new Set(['dist', 'lib', 'build', 'es', 'esm', 'out']);
|
|
50
|
+
// Always-skip subdirs regardless of depth: nested copies, test fixtures,
|
|
51
|
+
// docs, and example apps. Notably `src` is NOT in here because a published
|
|
52
|
+
// bundle may use `dist/src/<file>.jsx` as its layout (e.g. `solid-navigation`).
|
|
53
|
+
// `src/` at the *package root* is rejected separately by the
|
|
54
|
+
// "depth 0 must be a published-output dir" gate below.
|
|
55
|
+
const ALWAYS_SKIP_DIR_NAMES = new Set(['node_modules', 'test', 'tests', '__tests__', 'spec', 'specs', 'docs', 'examples', 'example', '.git', '.cache']);
|
|
56
|
+
const JSX_EXT_RE = /\.(jsx|tsx)$/;
|
|
57
|
+
const MAX_SCAN_DEPTH = 4;
|
|
58
|
+
function isSolidConsumer(pkgJson) {
|
|
59
|
+
const buckets = ['dependencies', 'peerDependencies', 'devDependencies', 'optionalDependencies'];
|
|
60
|
+
for (const key of buckets) {
|
|
61
|
+
const deps = pkgJson[key];
|
|
62
|
+
if (!deps || typeof deps !== 'object')
|
|
63
|
+
continue;
|
|
64
|
+
if (deps['solid-js'])
|
|
65
|
+
return true;
|
|
66
|
+
if (deps['@nativescript-community/solid-js'])
|
|
67
|
+
return true;
|
|
68
|
+
}
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
function hasJsxFile(dir, depth = 0) {
|
|
72
|
+
if (depth > MAX_SCAN_DEPTH)
|
|
73
|
+
return false;
|
|
74
|
+
let entries;
|
|
75
|
+
try {
|
|
76
|
+
entries = fs.readdirSync(dir, { withFileTypes: true });
|
|
77
|
+
}
|
|
78
|
+
catch {
|
|
79
|
+
return false;
|
|
80
|
+
}
|
|
81
|
+
for (const entry of entries) {
|
|
82
|
+
if (entry.isFile() && JSX_EXT_RE.test(entry.name)) {
|
|
83
|
+
return true;
|
|
84
|
+
}
|
|
85
|
+
if (entry.isDirectory()) {
|
|
86
|
+
if (entry.name.startsWith('.'))
|
|
87
|
+
continue;
|
|
88
|
+
if (ALWAYS_SKIP_DIR_NAMES.has(entry.name))
|
|
89
|
+
continue;
|
|
90
|
+
// At depth 0 (package root) only descend into known
|
|
91
|
+
// published-output dirs so a sibling `src/` (raw sources)
|
|
92
|
+
// can't flag the package on its own. Deeper levels are
|
|
93
|
+
// inside a publish dir already, so any subdir (incl. `src`)
|
|
94
|
+
// is fair game.
|
|
95
|
+
if (depth === 0 && !PUBLISHED_OUTPUT_DIRS.has(entry.name))
|
|
96
|
+
continue;
|
|
97
|
+
if (hasJsxFile(path.join(dir, entry.name), depth + 1))
|
|
98
|
+
return true;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return false;
|
|
102
|
+
}
|
|
103
|
+
function scanDirectoryForJsxPackages(nodeModulesDir, result, scope = '') {
|
|
104
|
+
let entries;
|
|
105
|
+
try {
|
|
106
|
+
entries = fs.readdirSync(nodeModulesDir, { withFileTypes: true });
|
|
107
|
+
}
|
|
108
|
+
catch {
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
for (const entry of entries) {
|
|
112
|
+
if (!entry.isDirectory())
|
|
113
|
+
continue;
|
|
114
|
+
if (entry.name.startsWith('.'))
|
|
115
|
+
continue;
|
|
116
|
+
if (entry.name === 'node_modules')
|
|
117
|
+
continue;
|
|
118
|
+
const entryPath = path.join(nodeModulesDir, entry.name);
|
|
119
|
+
if (!scope && entry.name.startsWith('@')) {
|
|
120
|
+
scanDirectoryForJsxPackages(entryPath, result, entry.name);
|
|
121
|
+
continue;
|
|
122
|
+
}
|
|
123
|
+
const pkgName = scope ? `${scope}/${entry.name}` : entry.name;
|
|
124
|
+
if (result.has(pkgName))
|
|
125
|
+
continue;
|
|
126
|
+
const pkgJsonPath = path.join(entryPath, 'package.json');
|
|
127
|
+
if (!fs.existsSync(pkgJsonPath))
|
|
128
|
+
continue;
|
|
129
|
+
let pkgJson;
|
|
130
|
+
try {
|
|
131
|
+
pkgJson = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf8'));
|
|
132
|
+
}
|
|
133
|
+
catch {
|
|
134
|
+
continue;
|
|
135
|
+
}
|
|
136
|
+
if (!isSolidConsumer(pkgJson))
|
|
137
|
+
continue;
|
|
138
|
+
if (!hasJsxFile(entryPath))
|
|
139
|
+
continue;
|
|
140
|
+
result.add(pkgName);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Find installed packages whose pre-bundle output would smuggle JSX into
|
|
145
|
+
* Vite's import-analysis stage. Returned names are safe to drop into
|
|
146
|
+
* `optimizeDeps.exclude` — the dev server will serve them through the
|
|
147
|
+
* normal module pipeline, where `vite-plugin-solid` can transform their
|
|
148
|
+
* original `.jsx`/`.tsx` files.
|
|
149
|
+
*
|
|
150
|
+
* The function is intentionally synchronous and best-effort: filesystem
|
|
151
|
+
* errors are swallowed, missing directories are skipped, and the scan
|
|
152
|
+
* caps at {@link MAX_SCAN_DEPTH} levels per package. Callers should
|
|
153
|
+
* treat the empty-array result as "no exclusions needed", not "scan
|
|
154
|
+
* failed". A nullable `monorepoRoot` is accepted so workspace hoisting
|
|
155
|
+
* is covered without forcing every caller to compute it.
|
|
156
|
+
*/
|
|
157
|
+
export function findSolidPackagesShippingJsx(projectRoot, monorepoRoot) {
|
|
158
|
+
const found = new Set();
|
|
159
|
+
const seenDirs = new Set();
|
|
160
|
+
const scanDirs = [];
|
|
161
|
+
const projectNodeModules = path.resolve(projectRoot, 'node_modules');
|
|
162
|
+
scanDirs.push(projectNodeModules);
|
|
163
|
+
if (monorepoRoot && path.resolve(monorepoRoot) !== path.resolve(projectRoot)) {
|
|
164
|
+
const monorepoNodeModules = path.resolve(monorepoRoot, 'node_modules');
|
|
165
|
+
scanDirs.push(monorepoNodeModules);
|
|
166
|
+
}
|
|
167
|
+
for (const dir of scanDirs) {
|
|
168
|
+
const key = path.resolve(dir);
|
|
169
|
+
if (seenDirs.has(key))
|
|
170
|
+
continue;
|
|
171
|
+
seenDirs.add(key);
|
|
172
|
+
if (!fs.existsSync(dir))
|
|
173
|
+
continue;
|
|
174
|
+
scanDirectoryForJsxPackages(dir, found);
|
|
175
|
+
}
|
|
176
|
+
return Array.from(found).sort();
|
|
177
|
+
}
|
|
178
|
+
//# sourceMappingURL=solid-jsx-deps.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"solid-jsx-deps.js","sourceRoot":"","sources":["../../../../../../../packages/vite/hmr/frameworks/solid/build/solid-jsx-deps.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bootstrap + HMR remount for NativeScript Solid apps.
|
|
3
|
+
*
|
|
4
|
+
* Solid runs with `hot: false` (solid-refresh is off — it rewrites `export
|
|
5
|
+
* function` into a non-hoisted const and breaks TanStack file-route modules), so
|
|
6
|
+
* there is no fine-grained component HMR.
|
|
7
|
+
*
|
|
8
|
+
* Division of labour on each Solid HMR cycle (`__ns_solid_hmr_subscribe`):
|
|
9
|
+
* • ROUTE files — handled by @nativescript/tanstack-router's per-page remount
|
|
10
|
+
* (`subscribeSolidHmrRemount` → `page.__ns_remount`), which swaps the route
|
|
11
|
+
* component in place WITHOUT re-navigating, so the user stays on their route.
|
|
12
|
+
* This helper does nothing for route-only edits.
|
|
13
|
+
* • Everything else (app shell / shared components / app entry) — this helper
|
|
14
|
+
* re-imports the app entry and re-renders the whole Solid tree. The router is
|
|
15
|
+
* REUSED (its chain is never evicted), so the current route is preserved.
|
|
16
|
+
*
|
|
17
|
+
* Renderer bindings (`Application`, `render`, `document`) are passed in rather than
|
|
18
|
+
* imported here so the helper uses the app's exact solid-js / dominative instances.
|
|
19
|
+
* Importing our own copies could resolve to a different module realm and break
|
|
20
|
+
* Solid reactivity (NativeScript can load a package's deps in a separate realm).
|
|
21
|
+
*/
|
|
22
|
+
export interface StartSolidAppOptions {
|
|
23
|
+
/** `@nativescript/core` `Application`. */
|
|
24
|
+
Application: {
|
|
25
|
+
run(entry: {
|
|
26
|
+
create: () => any;
|
|
27
|
+
}): void;
|
|
28
|
+
};
|
|
29
|
+
/** `@nativescript-community/solid-js` `render` — mounts a component, returns a disposer. */
|
|
30
|
+
render: (component: any, target: any) => () => void;
|
|
31
|
+
/** dominative `document` — returned as the root view; `document.body` is the mount target. */
|
|
32
|
+
document: any;
|
|
33
|
+
/** Initial root component (used for the first mount). */
|
|
34
|
+
root: any;
|
|
35
|
+
/**
|
|
36
|
+
* App-relative specifier of the module that exports the root component, as
|
|
37
|
+
* `App` or default (e.g. `/src/native/app`). Re-imported fresh on each cycle.
|
|
38
|
+
*/
|
|
39
|
+
rootModule: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Boot a NativeScript Solid app and wire up HMR remounting. Call once from the
|
|
43
|
+
* app entry, e.g.:
|
|
44
|
+
*
|
|
45
|
+
* import './utils/dom';
|
|
46
|
+
* import { Application } from '@nativescript/core';
|
|
47
|
+
* import { render } from '@nativescript-community/solid-js';
|
|
48
|
+
* import { document } from 'dominative';
|
|
49
|
+
* import { startSolidApp } from '@nativescript/vite/solid-bootstrap';
|
|
50
|
+
* import { App } from './app';
|
|
51
|
+
*
|
|
52
|
+
* startSolidApp({ Application, render, document, root: App, rootModule: '/src/native/app' });
|
|
53
|
+
*/
|
|
54
|
+
export declare function startSolidApp(options: StartSolidAppOptions): void;
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
const SCRIPT_EXT = /\.(?:tsx|jsx|ts|js|mjs|mts|cjs|cts)$/i;
|
|
2
|
+
const ROUTE_FILE_RE = /\/routes\/.+\.(?:tsx|jsx)$/i;
|
|
3
|
+
const isSource = (id) => SCRIPT_EXT.test(id) && !/\.d\.ts$/i.test(id);
|
|
4
|
+
// A "shell" change is any source file that is NOT a route file — route files are
|
|
5
|
+
// hot-swapped per-page by the router, shell files need an app re-render.
|
|
6
|
+
const isShell = (id) => isSource(id) && !ROUTE_FILE_RE.test(id);
|
|
7
|
+
/** Resolve the dev-server HTTP origin used to fetch app modules over the wire. */
|
|
8
|
+
function resolveOrigin() {
|
|
9
|
+
try {
|
|
10
|
+
const m = String(import.meta.url).match(/^https?:\/\/[^/]+/);
|
|
11
|
+
if (m)
|
|
12
|
+
return m[0];
|
|
13
|
+
}
|
|
14
|
+
catch { }
|
|
15
|
+
const g = globalThis;
|
|
16
|
+
if (typeof g.__NS_HTTP_ORIGIN__ === 'string' && /^https?:\/\//.test(g.__NS_HTTP_ORIGIN__)) {
|
|
17
|
+
return g.__NS_HTTP_ORIGIN__;
|
|
18
|
+
}
|
|
19
|
+
if (typeof g.__NS_HMR_WS_URL__ === 'string') {
|
|
20
|
+
const m = g.__NS_HMR_WS_URL__.match(/^wss?:\/\/([^/]+)/);
|
|
21
|
+
if (m)
|
|
22
|
+
return 'http://' + m[1];
|
|
23
|
+
}
|
|
24
|
+
return '';
|
|
25
|
+
}
|
|
26
|
+
/** Canonical `/ns/m/<path>` eviction URLs (with + without script extension). */
|
|
27
|
+
function evictionUrls(origin, specs) {
|
|
28
|
+
const urls = new Set();
|
|
29
|
+
for (const raw of specs) {
|
|
30
|
+
if (!raw)
|
|
31
|
+
continue;
|
|
32
|
+
let spec = raw.split('?')[0];
|
|
33
|
+
if (!spec.startsWith('/'))
|
|
34
|
+
spec = '/' + spec;
|
|
35
|
+
const canonical = spec.replace(SCRIPT_EXT, '');
|
|
36
|
+
urls.add(origin + '/ns/m' + canonical);
|
|
37
|
+
if (spec !== canonical)
|
|
38
|
+
urls.add(origin + '/ns/m' + spec);
|
|
39
|
+
for (const ext of ['.tsx', '.ts', '.jsx', '.js'])
|
|
40
|
+
urls.add(origin + '/ns/m' + canonical + ext);
|
|
41
|
+
}
|
|
42
|
+
return Array.from(urls);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Boot a NativeScript Solid app and wire up HMR remounting. Call once from the
|
|
46
|
+
* app entry, e.g.:
|
|
47
|
+
*
|
|
48
|
+
* import './utils/dom';
|
|
49
|
+
* import { Application } from '@nativescript/core';
|
|
50
|
+
* import { render } from '@nativescript-community/solid-js';
|
|
51
|
+
* import { document } from 'dominative';
|
|
52
|
+
* import { startSolidApp } from '@nativescript/vite/solid-bootstrap';
|
|
53
|
+
* import { App } from './app';
|
|
54
|
+
*
|
|
55
|
+
* startSolidApp({ Application, render, document, root: App, rootModule: '/src/native/app' });
|
|
56
|
+
*/
|
|
57
|
+
export function startSolidApp(options) {
|
|
58
|
+
const { Application, render, document, root, rootModule } = options;
|
|
59
|
+
let dispose;
|
|
60
|
+
const mount = (Component) => {
|
|
61
|
+
if (dispose) {
|
|
62
|
+
try {
|
|
63
|
+
dispose();
|
|
64
|
+
}
|
|
65
|
+
catch (err) {
|
|
66
|
+
console.log('[ns-solid-hmr] dispose error', err);
|
|
67
|
+
}
|
|
68
|
+
dispose = undefined;
|
|
69
|
+
// Rapid remounts can leave a detached native view parented to body; drop
|
|
70
|
+
// any residue so each remount starts clean (else ghost/overlapping views).
|
|
71
|
+
try {
|
|
72
|
+
const body = document.body;
|
|
73
|
+
while (body && body.firstChild)
|
|
74
|
+
body.removeChild(body.firstChild);
|
|
75
|
+
}
|
|
76
|
+
catch (err) {
|
|
77
|
+
console.log('[ns-solid-hmr] body clear error', err);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
dispose = render(Component, document.body);
|
|
81
|
+
};
|
|
82
|
+
Application.run({ create: () => (mount(root), document) });
|
|
83
|
+
installHmrRemount(rootModule, mount);
|
|
84
|
+
}
|
|
85
|
+
function installHmrRemount(rootModule, mount) {
|
|
86
|
+
const origin = resolveOrigin();
|
|
87
|
+
let nonce = 0;
|
|
88
|
+
let busy = false;
|
|
89
|
+
let rerun = false;
|
|
90
|
+
const remount = async (changed) => {
|
|
91
|
+
if (!origin) {
|
|
92
|
+
console.log('[ns-solid-hmr] no HTTP origin resolved; cannot re-import');
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
if (busy) {
|
|
96
|
+
// A remount is in flight; run one more pass after it settles so the very
|
|
97
|
+
// latest edit is never dropped.
|
|
98
|
+
rerun = true;
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
busy = true;
|
|
102
|
+
try {
|
|
103
|
+
// Evict the app entry + changed files so their re-imports resolve to fresh
|
|
104
|
+
// code. We deliberately do NOT evict the router / route-tree chain: keeping
|
|
105
|
+
// it cached preserves the live router (and the user's current route).
|
|
106
|
+
const invalidate = globalThis.__nsInvalidateModules;
|
|
107
|
+
if (typeof invalidate === 'function') {
|
|
108
|
+
try {
|
|
109
|
+
invalidate(evictionUrls(origin, [rootModule, ...changed]));
|
|
110
|
+
}
|
|
111
|
+
catch (err) {
|
|
112
|
+
console.log('[ns-solid-hmr] invalidate threw', err);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
const t = `${Date.now()}_${++nonce}`;
|
|
116
|
+
// Entry-tagged URL first: the `__ns_hmr__/entry-<n>/` segment makes the dev
|
|
117
|
+
// server serve a freshly-transformed module instead of a cached (one-edit-
|
|
118
|
+
// behind) transform. Plain canonical URL is the fallback.
|
|
119
|
+
const candidates = [origin + '/ns/m/__ns_hmr__/entry-' + t + rootModule + '?t=' + t, origin + '/ns/m' + rootModule + '?t=' + t];
|
|
120
|
+
for (const url of candidates) {
|
|
121
|
+
try {
|
|
122
|
+
const mod = await import(/* @vite-ignore */ url);
|
|
123
|
+
const Next = mod && (mod.App || mod.default);
|
|
124
|
+
if (typeof Next === 'function') {
|
|
125
|
+
mount(Next);
|
|
126
|
+
return;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
catch (err) {
|
|
130
|
+
console.log('[ns-solid-hmr] re-import failed', url, err?.message ?? err);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
console.log('[ns-solid-hmr] all re-import candidates failed');
|
|
134
|
+
}
|
|
135
|
+
finally {
|
|
136
|
+
busy = false;
|
|
137
|
+
if (rerun) {
|
|
138
|
+
rerun = false;
|
|
139
|
+
void remount([]);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
// Coalesce bursts (a single save can fan out several notifications) into one remount.
|
|
144
|
+
let timer;
|
|
145
|
+
let pending = new Set();
|
|
146
|
+
const schedule = (ids) => {
|
|
147
|
+
for (const id of ids)
|
|
148
|
+
pending.add(id);
|
|
149
|
+
if (timer)
|
|
150
|
+
clearTimeout(timer);
|
|
151
|
+
timer = setTimeout(() => {
|
|
152
|
+
timer = undefined;
|
|
153
|
+
const batch = Array.from(pending);
|
|
154
|
+
pending = new Set();
|
|
155
|
+
void remount(batch);
|
|
156
|
+
}, 30);
|
|
157
|
+
};
|
|
158
|
+
const g = globalThis;
|
|
159
|
+
let subscribed = false;
|
|
160
|
+
const trySubscribe = (attempt) => {
|
|
161
|
+
if (subscribed)
|
|
162
|
+
return;
|
|
163
|
+
if (typeof g.__ns_solid_hmr_subscribe === 'function') {
|
|
164
|
+
g.__ns_solid_hmr_subscribe((ev) => {
|
|
165
|
+
const changed = ev && Array.isArray(ev.changedFiles) ? ev.changedFiles : [];
|
|
166
|
+
const boundaries = ev && Array.isArray(ev.boundaries) ? ev.boundaries : [];
|
|
167
|
+
const ids = [...changed, ...boundaries].filter(isSource);
|
|
168
|
+
// Route-only edits are hot-swapped in place by the router's per-page
|
|
169
|
+
// remount — don't re-render the whole app (which would fight it). Only
|
|
170
|
+
// re-render for shell / shared-component / app-entry edits.
|
|
171
|
+
if (!ids.some(isShell))
|
|
172
|
+
return;
|
|
173
|
+
schedule(ids);
|
|
174
|
+
});
|
|
175
|
+
subscribed = true;
|
|
176
|
+
return;
|
|
177
|
+
}
|
|
178
|
+
// The HMR client loads asynchronously; retry until its global API is present.
|
|
179
|
+
if (attempt < 100)
|
|
180
|
+
setTimeout(() => trySubscribe(attempt + 1), 150);
|
|
181
|
+
};
|
|
182
|
+
trySubscribe(0);
|
|
183
|
+
}
|
|
184
|
+
//# sourceMappingURL=app-runtime.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-runtime.js","sourceRoot":"","sources":["../../../../../../../packages/vite/hmr/frameworks/solid/client/app-runtime.ts"],"names":[],"mappings":"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"}
|