nuclie 1.0.0
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/LICENSE +21 -0
- package/README.md +516 -0
- package/dist/ai/analyzer.d.ts +29 -0
- package/dist/ai/analyzer.js +202 -0
- package/dist/ai/chat/cli.d.ts +3 -0
- package/dist/ai/chat/cli.js +38 -0
- package/dist/ai/client.d.ts +17 -0
- package/dist/ai/client.js +68 -0
- package/dist/ai/cloud/api.d.ts +28 -0
- package/dist/ai/cloud/api.js +118 -0
- package/dist/ai/cloud/modelSync.d.ts +18 -0
- package/dist/ai/cloud/modelSync.js +104 -0
- package/dist/ai/cloud/telemetry.d.ts +14 -0
- package/dist/ai/cloud/telemetry.js +23 -0
- package/dist/ai/config.d.ts +14 -0
- package/dist/ai/config.js +9 -0
- package/dist/ai/core/errorMemory.d.ts +14 -0
- package/dist/ai/core/errorMemory.js +36 -0
- package/dist/ai/dashboard/cli.d.ts +3 -0
- package/dist/ai/dashboard/cli.js +32 -0
- package/dist/ai/healer/applier.d.ts +9 -0
- package/dist/ai/healer/applier.js +74 -0
- package/dist/ai/healer/cli.d.ts +3 -0
- package/dist/ai/healer/cli.js +57 -0
- package/dist/ai/healer/collector.d.ts +16 -0
- package/dist/ai/healer/collector.js +41 -0
- package/dist/ai/healer/fixer.d.ts +12 -0
- package/dist/ai/healer/fixer.js +40 -0
- package/dist/ai/healer/llm.d.ts +9 -0
- package/dist/ai/healer/llm.js +20 -0
- package/dist/ai/healer/parser.d.ts +16 -0
- package/dist/ai/healer/parser.js +67 -0
- package/dist/ai/learning/evolver.d.ts +8 -0
- package/dist/ai/learning/evolver.js +24 -0
- package/dist/ai/llm/fixGenerator.d.ts +9 -0
- package/dist/ai/llm/fixGenerator.js +21 -0
- package/dist/ai/llm/ollama.d.ts +10 -0
- package/dist/ai/llm/ollama.js +56 -0
- package/dist/ai/local/fixStore.d.ts +19 -0
- package/dist/ai/local/fixStore.js +105 -0
- package/dist/ai/optimizer/analyzer.d.ts +9 -0
- package/dist/ai/optimizer/analyzer.js +65 -0
- package/dist/ai/optimizer/engine.d.ts +16 -0
- package/dist/ai/optimizer/engine.js +51 -0
- package/dist/ai/optimizer/llm.d.ts +8 -0
- package/dist/ai/optimizer/llm.js +14 -0
- package/dist/ai/optimizer/profiler.d.ts +11 -0
- package/dist/ai/optimizer/profiler.js +111 -0
- package/dist/ai/optimizer/rules.d.ts +12 -0
- package/dist/ai/optimizer/rules.js +37 -0
- package/dist/ai/patterns/common.d.ts +8 -0
- package/dist/ai/patterns/common.js +181 -0
- package/dist/ai/reporter/assembler.d.ts +11 -0
- package/dist/ai/reporter/assembler.js +10 -0
- package/dist/ai/reporter/generator.d.ts +4 -0
- package/dist/ai/reporter/generator.js +42 -0
- package/dist/ai/reporter/narrator.d.ts +8 -0
- package/dist/ai/reporter/narrator.js +29 -0
- package/dist/ai/schema.d.ts +104 -0
- package/dist/ai/schema.js +45 -0
- package/dist/ai/telemetry.d.ts +14 -0
- package/dist/ai/telemetry.js +96 -0
- package/dist/audit/a11y.d.ts +5 -0
- package/dist/audit/a11y.js +123 -0
- package/dist/audit/best-practices.d.ts +5 -0
- package/dist/audit/best-practices.js +68 -0
- package/dist/audit/build-integration.d.ts +59 -0
- package/dist/audit/build-integration.js +138 -0
- package/dist/audit/core.d.ts +62 -0
- package/dist/audit/core.js +327 -0
- package/dist/audit/index.d.ts +4 -0
- package/dist/audit/index.js +60 -0
- package/dist/audit/perf.d.ts +5 -0
- package/dist/audit/perf.js +69 -0
- package/dist/audit/seo.d.ts +5 -0
- package/dist/audit/seo.js +63 -0
- package/dist/audit/types.d.ts +35 -0
- package/dist/audit/types.js +1 -0
- package/dist/audit-stub/types.d.ts +25 -0
- package/dist/audit-stub/types.js +1 -0
- package/dist/build/bundle-stats.d.ts +2 -0
- package/dist/build/bundle-stats.js +42 -0
- package/dist/build/bundler.d.ts +46 -0
- package/dist/build/bundler.js +31 -0
- package/dist/build/index.d.ts +36 -0
- package/dist/build/index.js +69 -0
- package/dist/build/pipeline.d.ts +31 -0
- package/dist/build/pipeline.js +68 -0
- package/dist/builder/server.d.ts +11 -0
- package/dist/builder/server.js +253 -0
- package/dist/cache/incremental.d.ts +75 -0
- package/dist/cache/incremental.js +200 -0
- package/dist/cache/index.d.ts +17 -0
- package/dist/cache/index.js +186 -0
- package/dist/cache/rocksdb.d.ts +18 -0
- package/dist/cache/rocksdb.js +63 -0
- package/dist/cli/css-cli.d.ts +5 -0
- package/dist/cli/css-cli.js +112 -0
- package/dist/cli/inspect.d.ts +1 -0
- package/dist/cli/inspect.js +94 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +586 -0
- package/dist/commands/analyze.d.ts +1 -0
- package/dist/commands/analyze.js +295 -0
- package/dist/commands/doctor.d.ts +21 -0
- package/dist/commands/doctor.js +364 -0
- package/dist/commands/ssr.d.ts +12 -0
- package/dist/commands/ssr.js +30 -0
- package/dist/commands/verify.d.ts +38 -0
- package/dist/commands/verify.js +459 -0
- package/dist/config/index.d.ts +145 -0
- package/dist/config/index.js +227 -0
- package/dist/config/live-config.d.ts +22 -0
- package/dist/config/live-config.js +88 -0
- package/dist/core/__tests__/permissions.test.d.ts +1 -0
- package/dist/core/__tests__/permissions.test.js +16 -0
- package/dist/core/__tests__/universal-transformer.test.d.ts +1 -0
- package/dist/core/__tests__/universal-transformer.test.js +27 -0
- package/dist/core/build/globalOptimizer.d.ts +8 -0
- package/dist/core/build/globalOptimizer.js +21 -0
- package/dist/core/build/incremental.d.ts +13 -0
- package/dist/core/build/incremental.js +29 -0
- package/dist/core/bundler-rolldown.d.ts +42 -0
- package/dist/core/bundler-rolldown.js +100 -0
- package/dist/core/cache/lazy-init.d.ts +50 -0
- package/dist/core/cache/lazy-init.js +153 -0
- package/dist/core/cache-manager.d.ts +51 -0
- package/dist/core/cache-manager.js +149 -0
- package/dist/core/css/engine.d.ts +37 -0
- package/dist/core/css/engine.js +113 -0
- package/dist/core/css-framework-detector.d.ts +10 -0
- package/dist/core/css-framework-detector.js +169 -0
- package/dist/core/detection/files.d.ts +2 -0
- package/dist/core/detection/files.js +77 -0
- package/dist/core/detection/index.d.ts +8 -0
- package/dist/core/detection/index.js +39 -0
- package/dist/core/detection/resolver.d.ts +2 -0
- package/dist/core/detection/resolver.js +116 -0
- package/dist/core/detection/scanner.d.ts +4 -0
- package/dist/core/detection/scanner.js +145 -0
- package/dist/core/detection/types.d.ts +33 -0
- package/dist/core/detection/types.js +12 -0
- package/dist/core/engine/cache.d.ts +18 -0
- package/dist/core/engine/cache.js +72 -0
- package/dist/core/engine/config.d.ts +11 -0
- package/dist/core/engine/config.js +158 -0
- package/dist/core/engine/emit.d.ts +8 -0
- package/dist/core/engine/emit.js +60 -0
- package/dist/core/engine/events.d.ts +13 -0
- package/dist/core/engine/events.js +35 -0
- package/dist/core/engine/execute.d.ts +5 -0
- package/dist/core/engine/execute.js +226 -0
- package/dist/core/engine/hash.d.ts +8 -0
- package/dist/core/engine/hash.js +39 -0
- package/dist/core/engine/index.d.ts +49 -0
- package/dist/core/engine/index.js +156 -0
- package/dist/core/engine/optimize.d.ts +2 -0
- package/dist/core/engine/optimize.js +99 -0
- package/dist/core/engine/plan.d.ts +9 -0
- package/dist/core/engine/plan.js +196 -0
- package/dist/core/engine/types.d.ts +120 -0
- package/dist/core/engine/types.js +1 -0
- package/dist/core/errors/hero-errors.d.ts +57 -0
- package/dist/core/errors/hero-errors.js +269 -0
- package/dist/core/framework-detector.d.ts +20 -0
- package/dist/core/framework-detector.js +148 -0
- package/dist/core/graph/js-graph-analyzer.d.ts +51 -0
- package/dist/core/graph/js-graph-analyzer.js +178 -0
- package/dist/core/graph/serializer.d.ts +7 -0
- package/dist/core/graph/serializer.js +24 -0
- package/dist/core/interop/analyze.d.ts +8 -0
- package/dist/core/interop/analyze.js +82 -0
- package/dist/core/interop/analyze_ast.d.ts +9 -0
- package/dist/core/interop/analyze_ast.js +174 -0
- package/dist/core/interop/index.d.ts +19 -0
- package/dist/core/interop/index.js +36 -0
- package/dist/core/interop/resolve.d.ts +9 -0
- package/dist/core/interop/resolve.js +55 -0
- package/dist/core/interop/types.d.ts +28 -0
- package/dist/core/interop/types.js +2 -0
- package/dist/core/interop/wrapper.d.ts +11 -0
- package/dist/core/interop/wrapper.js +50 -0
- package/dist/core/parser-bun.d.ts +54 -0
- package/dist/core/parser-bun.js +86 -0
- package/dist/core/permissions.d.ts +16 -0
- package/dist/core/permissions.js +47 -0
- package/dist/core/pipeline/framework-pipeline.d.ts +71 -0
- package/dist/core/pipeline/framework-pipeline.js +113 -0
- package/dist/core/plugins/index.d.ts +5 -0
- package/dist/core/plugins/index.js +5 -0
- package/dist/core/plugins/manager.d.ts +30 -0
- package/dist/core/plugins/manager.js +123 -0
- package/dist/core/plugins/sandbox_js.d.ts +9 -0
- package/dist/core/plugins/sandbox_js.js +37 -0
- package/dist/core/plugins/sandbox_wasm.d.ts +10 -0
- package/dist/core/plugins/sandbox_wasm.js +68 -0
- package/dist/core/plugins/types.d.ts +37 -0
- package/dist/core/plugins/types.js +2 -0
- package/dist/core/plugins/validation.d.ts +8 -0
- package/dist/core/plugins/validation.js +30 -0
- package/dist/core/sandbox.d.ts +9 -0
- package/dist/core/sandbox.js +79 -0
- package/dist/core/steps/css-optimization.d.ts +65 -0
- package/dist/core/steps/css-optimization.js +318 -0
- package/dist/core/steps.d.ts +7 -0
- package/dist/core/steps.js +17 -0
- package/dist/core/transform/batchTransformer.d.ts +12 -0
- package/dist/core/transform/batchTransformer.js +24 -0
- package/dist/core/transform/transformer.d.ts +9 -0
- package/dist/core/transform/transformer.js +189 -0
- package/dist/core/universal-transformer.d.ts +81 -0
- package/dist/core/universal-transformer.js +780 -0
- package/dist/create/index.d.ts +25 -0
- package/dist/create/index.js +584 -0
- package/dist/create/ui.d.ts +13 -0
- package/dist/create/ui.js +218 -0
- package/dist/create-nuclie/cli.d.ts +7 -0
- package/dist/create-nuclie/cli.js +73 -0
- package/dist/create-nuclie/templates.d.ts +18 -0
- package/dist/create-nuclie/templates.js +73 -0
- package/dist/create-nuclie.d.ts +2 -0
- package/dist/create-nuclie.js +7 -0
- package/dist/dashboard/metrics.d.ts +31 -0
- package/dist/dashboard/metrics.js +59 -0
- package/dist/dashboard/server/router.d.ts +52 -0
- package/dist/dashboard/server/router.js +36 -0
- package/dist/dev/__tests__/preBundler.test.d.ts +1 -0
- package/dist/dev/__tests__/preBundler.test.js +51 -0
- package/dist/dev/configWatcher.d.ts +10 -0
- package/dist/dev/configWatcher.js +42 -0
- package/dist/dev/devServer.d.ts +2 -0
- package/dist/dev/devServer.js +1398 -0
- package/dist/dev/devServer.minimal.d.ts +8 -0
- package/dist/dev/devServer.minimal.js +122 -0
- package/dist/dev/federation-dev.d.ts +14 -0
- package/dist/dev/federation-dev.js +69 -0
- package/dist/dev/hmr-engine.d.ts +12 -0
- package/dist/dev/hmr-engine.js +66 -0
- package/dist/dev/hmr-v2.d.ts +40 -0
- package/dist/dev/hmr-v2.js +87 -0
- package/dist/dev/hmrThrottle.d.ts +13 -0
- package/dist/dev/hmrThrottle.js +56 -0
- package/dist/dev/overlay/overlay-client.d.ts +7 -0
- package/dist/dev/overlay/overlay-client.js +53 -0
- package/dist/dev/overlay/overlay-ui.d.ts +17 -0
- package/dist/dev/overlay/overlay-ui.js +133 -0
- package/dist/dev/preBundler.d.ts +17 -0
- package/dist/dev/preBundler.js +343 -0
- package/dist/dev/statusHandler.d.ts +11 -0
- package/dist/dev/statusHandler.js +44 -0
- package/dist/dev/types.d.ts +30 -0
- package/dist/dev/types.js +1 -0
- package/dist/dev/watcher.d.ts +11 -0
- package/dist/dev/watcher.js +40 -0
- package/dist/dev-server-manual.d.ts +5 -0
- package/dist/dev-server-manual.js +24 -0
- package/dist/dev-server.d.ts +25 -0
- package/dist/dev-server.js +255 -0
- package/dist/env/api.d.ts +27 -0
- package/dist/env/api.js +36 -0
- package/dist/fix/ast-transforms.d.ts +81 -0
- package/dist/fix/ast-transforms.js +449 -0
- package/dist/hmr/classifier.d.ts +51 -0
- package/dist/hmr/classifier.js +232 -0
- package/dist/hmr/index.d.ts +5 -0
- package/dist/hmr/index.js +5 -0
- package/dist/hmr/overlay.d.ts +39 -0
- package/dist/hmr/overlay.js +285 -0
- package/dist/index.d.ts +46 -0
- package/dist/index.js +57 -0
- package/dist/init/bootstrap.d.ts +1 -0
- package/dist/init/bootstrap.js +106 -0
- package/dist/init/index.d.ts +1 -0
- package/dist/init/index.js +74 -0
- package/dist/init/templates.d.ts +2 -0
- package/dist/init/templates.js +227 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +3 -0
- package/dist/marketplace/client.d.ts +25 -0
- package/dist/marketplace/client.js +73 -0
- package/dist/marketplace/db.d.ts +24 -0
- package/dist/marketplace/db.js +57 -0
- package/dist/marketplace/plugin-adapter.d.ts +14 -0
- package/dist/marketplace/plugin-adapter.js +85 -0
- package/dist/marketplace/server.d.ts +66 -0
- package/dist/marketplace/server.js +97 -0
- package/dist/meta-frameworks/base-router.d.ts +63 -0
- package/dist/meta-frameworks/base-router.js +259 -0
- package/dist/meta-frameworks/index.d.ts +8 -0
- package/dist/meta-frameworks/index.js +8 -0
- package/dist/meta-frameworks/nextjs/router.d.ts +35 -0
- package/dist/meta-frameworks/nextjs/router.js +176 -0
- package/dist/meta-frameworks/nuxt/router.d.ts +22 -0
- package/dist/meta-frameworks/nuxt/router.js +84 -0
- package/dist/meta-frameworks/remix/router.d.ts +28 -0
- package/dist/meta-frameworks/remix/router.js +136 -0
- package/dist/meta-frameworks/ssr/react-renderer.d.ts +24 -0
- package/dist/meta-frameworks/ssr/react-renderer.js +53 -0
- package/dist/meta-frameworks/ssr/server.d.ts +92 -0
- package/dist/meta-frameworks/ssr/server.js +312 -0
- package/dist/meta-frameworks/ssr/vue-renderer.d.ts +11 -0
- package/dist/meta-frameworks/ssr/vue-renderer.js +35 -0
- package/dist/meta-frameworks/types.d.ts +76 -0
- package/dist/meta-frameworks/types.js +5 -0
- package/dist/migrate/analyzer.d.ts +46 -0
- package/dist/migrate/analyzer.js +254 -0
- package/dist/migrate/cli.d.ts +10 -0
- package/dist/migrate/cli.js +63 -0
- package/dist/migrate/generator.d.ts +32 -0
- package/dist/migrate/generator.js +214 -0
- package/dist/native/cache.d.ts +86 -0
- package/dist/native/cache.js +154 -0
- package/dist/native/index.d.ts +4 -0
- package/dist/native/index.js +56 -0
- package/dist/native/orchestrator.d.ts +78 -0
- package/dist/native/orchestrator.js +107 -0
- package/dist/native/wasm.d.ts +22 -0
- package/dist/native/wasm.js +33 -0
- package/dist/nuclie_native.node +0 -0
- package/dist/plugins/assets.d.ts +2 -0
- package/dist/plugins/assets.js +50 -0
- package/dist/plugins/compat/adapter.d.ts +33 -0
- package/dist/plugins/compat/adapter.js +102 -0
- package/dist/plugins/compat/deferred.d.ts +17 -0
- package/dist/plugins/compat/deferred.js +28 -0
- package/dist/plugins/compat/index.d.ts +11 -0
- package/dist/plugins/compat/index.js +11 -0
- package/dist/plugins/compat/rollup.d.ts +19 -0
- package/dist/plugins/compat/rollup.js +76 -0
- package/dist/plugins/compat/tier-a.d.ts +60 -0
- package/dist/plugins/compat/tier-a.js +132 -0
- package/dist/plugins/compat/tier-b.d.ts +34 -0
- package/dist/plugins/compat/tier-b.js +90 -0
- package/dist/plugins/compat/tier-c.d.ts +48 -0
- package/dist/plugins/compat/tier-c.js +49 -0
- package/dist/plugins/compat/webpack.d.ts +26 -0
- package/dist/plugins/compat/webpack.js +77 -0
- package/dist/plugins/core/linker.d.ts +8 -0
- package/dist/plugins/core/linker.js +51 -0
- package/dist/plugins/css/bootstrap.d.ts +25 -0
- package/dist/plugins/css/bootstrap.js +110 -0
- package/dist/plugins/css/bulma.d.ts +23 -0
- package/dist/plugins/css/bulma.js +75 -0
- package/dist/plugins/css/css-modules.d.ts +19 -0
- package/dist/plugins/css/css-modules.js +96 -0
- package/dist/plugins/css/css-optimizer.d.ts +43 -0
- package/dist/plugins/css/css-optimizer.js +155 -0
- package/dist/plugins/css/emotion.d.ts +35 -0
- package/dist/plugins/css/emotion.js +109 -0
- package/dist/plugins/css/less.d.ts +6 -0
- package/dist/plugins/css/less.js +33 -0
- package/dist/plugins/css/material.d.ts +24 -0
- package/dist/plugins/css/material.js +97 -0
- package/dist/plugins/css/postcss.d.ts +2 -0
- package/dist/plugins/css/postcss.js +96 -0
- package/dist/plugins/css/sass.d.ts +6 -0
- package/dist/plugins/css/sass.js +36 -0
- package/dist/plugins/css/styled-components.d.ts +33 -0
- package/dist/plugins/css/styled-components.js +94 -0
- package/dist/plugins/css/stylus.d.ts +6 -0
- package/dist/plugins/css/stylus.js +41 -0
- package/dist/plugins/css/tailwind.d.ts +9 -0
- package/dist/plugins/css/tailwind.js +132 -0
- package/dist/plugins/css-in-js.d.ts +10 -0
- package/dist/plugins/css-in-js.js +24 -0
- package/dist/plugins/edge.d.ts +7 -0
- package/dist/plugins/edge.js +38 -0
- package/dist/plugins/esbuildAdapter.d.ts +3 -0
- package/dist/plugins/esbuildAdapter.js +77 -0
- package/dist/plugins/federation_next.d.ts +16 -0
- package/dist/plugins/federation_next.js +78 -0
- package/dist/plugins/framework-plugins.d.ts +3 -0
- package/dist/plugins/framework-plugins.js +40 -0
- package/dist/plugins/frameworks/index.d.ts +8 -0
- package/dist/plugins/frameworks/index.js +10 -0
- package/dist/plugins/frameworks/lit.d.ts +36 -0
- package/dist/plugins/frameworks/lit.js +114 -0
- package/dist/plugins/frameworks/react.d.ts +38 -0
- package/dist/plugins/frameworks/react.js +144 -0
- package/dist/plugins/frameworks/solid.d.ts +36 -0
- package/dist/plugins/frameworks/solid.js +108 -0
- package/dist/plugins/frameworks/svelte.d.ts +43 -0
- package/dist/plugins/frameworks/svelte.js +144 -0
- package/dist/plugins/frameworks/vue.d.ts +43 -0
- package/dist/plugins/frameworks/vue.js +240 -0
- package/dist/plugins/governance.d.ts +36 -0
- package/dist/plugins/governance.js +50 -0
- package/dist/plugins/html.d.ts +2 -0
- package/dist/plugins/html.js +49 -0
- package/dist/plugins/implementations/analytics.d.ts +7 -0
- package/dist/plugins/implementations/analytics.js +15 -0
- package/dist/plugins/implementations/apollo.d.ts +7 -0
- package/dist/plugins/implementations/apollo.js +15 -0
- package/dist/plugins/implementations/audit.d.ts +7 -0
- package/dist/plugins/implementations/audit.js +30 -0
- package/dist/plugins/implementations/auto-fix.d.ts +7 -0
- package/dist/plugins/implementations/auto-fix.js +15 -0
- package/dist/plugins/implementations/avif.d.ts +7 -0
- package/dist/plugins/implementations/avif.js +27 -0
- package/dist/plugins/implementations/babel.d.ts +7 -0
- package/dist/plugins/implementations/babel.js +15 -0
- package/dist/plugins/implementations/bundle-analyzer.d.ts +7 -0
- package/dist/plugins/implementations/bundle-analyzer.js +21 -0
- package/dist/plugins/implementations/bundle-size.d.ts +7 -0
- package/dist/plugins/implementations/bundle-size.js +21 -0
- package/dist/plugins/implementations/checker.d.ts +7 -0
- package/dist/plugins/implementations/checker.js +15 -0
- package/dist/plugins/implementations/chromatic.d.ts +7 -0
- package/dist/plugins/implementations/chromatic.js +15 -0
- package/dist/plugins/implementations/cloudflare.d.ts +7 -0
- package/dist/plugins/implementations/cloudflare.js +15 -0
- package/dist/plugins/implementations/code-split.d.ts +7 -0
- package/dist/plugins/implementations/code-split.js +21 -0
- package/dist/plugins/implementations/compression.d.ts +7 -0
- package/dist/plugins/implementations/compression.js +21 -0
- package/dist/plugins/implementations/copy.d.ts +7 -0
- package/dist/plugins/implementations/copy.js +15 -0
- package/dist/plugins/implementations/critical-css.d.ts +7 -0
- package/dist/plugins/implementations/critical-css.js +25 -0
- package/dist/plugins/implementations/crypto-sign.d.ts +7 -0
- package/dist/plugins/implementations/crypto-sign.js +30 -0
- package/dist/plugins/implementations/css-framework.d.ts +7 -0
- package/dist/plugins/implementations/css-framework.js +25 -0
- package/dist/plugins/implementations/css.d.ts +7 -0
- package/dist/plugins/implementations/css.js +25 -0
- package/dist/plugins/implementations/cypress.d.ts +7 -0
- package/dist/plugins/implementations/cypress.js +15 -0
- package/dist/plugins/implementations/determinism.d.ts +7 -0
- package/dist/plugins/implementations/determinism.js +21 -0
- package/dist/plugins/implementations/edge.d.ts +8 -0
- package/dist/plugins/implementations/edge.js +35 -0
- package/dist/plugins/implementations/env-validation.d.ts +7 -0
- package/dist/plugins/implementations/env-validation.js +30 -0
- package/dist/plugins/implementations/eslint.d.ts +7 -0
- package/dist/plugins/implementations/eslint.js +15 -0
- package/dist/plugins/implementations/federation.d.ts +7 -0
- package/dist/plugins/implementations/federation.js +15 -0
- package/dist/plugins/implementations/file.d.ts +7 -0
- package/dist/plugins/implementations/file.js +27 -0
- package/dist/plugins/implementations/font-subset.d.ts +7 -0
- package/dist/plugins/implementations/font-subset.js +27 -0
- package/dist/plugins/implementations/fonts.d.ts +7 -0
- package/dist/plugins/implementations/fonts.js +27 -0
- package/dist/plugins/implementations/formatjs.d.ts +7 -0
- package/dist/plugins/implementations/formatjs.js +18 -0
- package/dist/plugins/implementations/graphql.d.ts +7 -0
- package/dist/plugins/implementations/graphql.js +15 -0
- package/dist/plugins/implementations/hmr-classify.d.ts +7 -0
- package/dist/plugins/implementations/hmr-classify.js +21 -0
- package/dist/plugins/implementations/html.d.ts +7 -0
- package/dist/plugins/implementations/html.js +15 -0
- package/dist/plugins/implementations/i18n.d.ts +7 -0
- package/dist/plugins/implementations/i18n.js +15 -0
- package/dist/plugins/implementations/icon.d.ts +7 -0
- package/dist/plugins/implementations/icon.js +27 -0
- package/dist/plugins/implementations/imagemin.d.ts +7 -0
- package/dist/plugins/implementations/imagemin.js +27 -0
- package/dist/plugins/implementations/inspect.d.ts +7 -0
- package/dist/plugins/implementations/inspect.js +15 -0
- package/dist/plugins/implementations/jest.d.ts +7 -0
- package/dist/plugins/implementations/jest.js +19 -0
- package/dist/plugins/implementations/jotai.d.ts +8 -0
- package/dist/plugins/implementations/jotai.js +35 -0
- package/dist/plugins/implementations/lazy-load.d.ts +7 -0
- package/dist/plugins/implementations/lazy-load.js +21 -0
- package/dist/plugins/implementations/legacy.d.ts +7 -0
- package/dist/plugins/implementations/legacy.js +15 -0
- package/dist/plugins/implementations/lighthouse.d.ts +7 -0
- package/dist/plugins/implementations/lighthouse.js +21 -0
- package/dist/plugins/implementations/manifest.d.ts +7 -0
- package/dist/plugins/implementations/manifest.js +15 -0
- package/dist/plugins/implementations/markdown.d.ts +7 -0
- package/dist/plugins/implementations/markdown.js +15 -0
- package/dist/plugins/implementations/md.d.ts +7 -0
- package/dist/plugins/implementations/md.js +15 -0
- package/dist/plugins/implementations/mdx.d.ts +7 -0
- package/dist/plugins/implementations/mdx.js +15 -0
- package/dist/plugins/implementations/meta-tags.d.ts +7 -0
- package/dist/plugins/implementations/meta-tags.js +15 -0
- package/dist/plugins/implementations/mini-css-extract-plugin.d.ts +7 -0
- package/dist/plugins/implementations/mini-css-extract-plugin.js +25 -0
- package/dist/plugins/implementations/mobx.d.ts +8 -0
- package/dist/plugins/implementations/mobx.js +35 -0
- package/dist/plugins/implementations/mock.d.ts +7 -0
- package/dist/plugins/implementations/mock.js +15 -0
- package/dist/plugins/implementations/msw.d.ts +7 -0
- package/dist/plugins/implementations/msw.js +19 -0
- package/dist/plugins/implementations/nanostores.d.ts +7 -0
- package/dist/plugins/implementations/nanostores.js +18 -0
- package/dist/plugins/implementations/netlify.d.ts +7 -0
- package/dist/plugins/implementations/netlify.js +15 -0
- package/dist/plugins/implementations/observability.d.ts +7 -0
- package/dist/plugins/implementations/observability.js +15 -0
- package/dist/plugins/implementations/og-image.d.ts +7 -0
- package/dist/plugins/implementations/og-image.js +15 -0
- package/dist/plugins/implementations/pages.d.ts +7 -0
- package/dist/plugins/implementations/pages.js +15 -0
- package/dist/plugins/implementations/pinia.d.ts +8 -0
- package/dist/plugins/implementations/pinia.js +35 -0
- package/dist/plugins/implementations/plausible.d.ts +7 -0
- package/dist/plugins/implementations/plausible.js +18 -0
- package/dist/plugins/implementations/playwright.d.ts +7 -0
- package/dist/plugins/implementations/playwright.js +15 -0
- package/dist/plugins/implementations/postcss.d.ts +7 -0
- package/dist/plugins/implementations/postcss.js +25 -0
- package/dist/plugins/implementations/posthog.d.ts +7 -0
- package/dist/plugins/implementations/posthog.js +18 -0
- package/dist/plugins/implementations/prebundle.d.ts +7 -0
- package/dist/plugins/implementations/prebundle.js +21 -0
- package/dist/plugins/implementations/prefetch.d.ts +7 -0
- package/dist/plugins/implementations/prefetch.js +21 -0
- package/dist/plugins/implementations/preload.d.ts +7 -0
- package/dist/plugins/implementations/preload.js +21 -0
- package/dist/plugins/implementations/prisma.d.ts +7 -0
- package/dist/plugins/implementations/prisma.js +15 -0
- package/dist/plugins/implementations/pwa.d.ts +7 -0
- package/dist/plugins/implementations/pwa.js +15 -0
- package/dist/plugins/implementations/qr-code.d.ts +7 -0
- package/dist/plugins/implementations/qr-code.js +19 -0
- package/dist/plugins/implementations/razorpay.d.ts +7 -0
- package/dist/plugins/implementations/razorpay.js +19 -0
- package/dist/plugins/implementations/react-i18next.d.ts +7 -0
- package/dist/plugins/implementations/react-i18next.js +18 -0
- package/dist/plugins/implementations/react-query.d.ts +8 -0
- package/dist/plugins/implementations/react-query.js +35 -0
- package/dist/plugins/implementations/react.d.ts +8 -0
- package/dist/plugins/implementations/react.js +35 -0
- package/dist/plugins/implementations/recoil.d.ts +8 -0
- package/dist/plugins/implementations/recoil.js +35 -0
- package/dist/plugins/implementations/redux.d.ts +8 -0
- package/dist/plugins/implementations/redux.js +35 -0
- package/dist/plugins/implementations/relay.d.ts +7 -0
- package/dist/plugins/implementations/relay.js +15 -0
- package/dist/plugins/implementations/repro.d.ts +7 -0
- package/dist/plugins/implementations/repro.js +15 -0
- package/dist/plugins/implementations/robots.d.ts +7 -0
- package/dist/plugins/implementations/robots.js +15 -0
- package/dist/plugins/implementations/root-cause.d.ts +7 -0
- package/dist/plugins/implementations/root-cause.js +15 -0
- package/dist/plugins/implementations/rss.d.ts +7 -0
- package/dist/plugins/implementations/rss.js +15 -0
- package/dist/plugins/implementations/sass.d.ts +7 -0
- package/dist/plugins/implementations/sass.js +25 -0
- package/dist/plugins/implementations/sentry.d.ts +7 -0
- package/dist/plugins/implementations/sentry.js +15 -0
- package/dist/plugins/implementations/sitemap.d.ts +7 -0
- package/dist/plugins/implementations/sitemap.js +15 -0
- package/dist/plugins/implementations/solid.d.ts +8 -0
- package/dist/plugins/implementations/solid.js +35 -0
- package/dist/plugins/implementations/sprite.d.ts +7 -0
- package/dist/plugins/implementations/sprite.js +27 -0
- package/dist/plugins/implementations/ssr.d.ts +8 -0
- package/dist/plugins/implementations/ssr.js +35 -0
- package/dist/plugins/implementations/storybook.d.ts +7 -0
- package/dist/plugins/implementations/storybook.js +15 -0
- package/dist/plugins/implementations/stripe.d.ts +7 -0
- package/dist/plugins/implementations/stripe.js +19 -0
- package/dist/plugins/implementations/style.d.ts +7 -0
- package/dist/plugins/implementations/style.js +25 -0
- package/dist/plugins/implementations/svelte.d.ts +8 -0
- package/dist/plugins/implementations/svelte.js +35 -0
- package/dist/plugins/implementations/tailwind.d.ts +7 -0
- package/dist/plugins/implementations/tailwind.js +25 -0
- package/dist/plugins/implementations/tanstack-query.d.ts +7 -0
- package/dist/plugins/implementations/tanstack-query.js +18 -0
- package/dist/plugins/implementations/terser.d.ts +7 -0
- package/dist/plugins/implementations/terser.js +21 -0
- package/dist/plugins/implementations/testing-library-react.d.ts +7 -0
- package/dist/plugins/implementations/testing-library-react.js +19 -0
- package/dist/plugins/implementations/testing-library.d.ts +7 -0
- package/dist/plugins/implementations/testing-library.js +15 -0
- package/dist/plugins/implementations/tree-shake.d.ts +7 -0
- package/dist/plugins/implementations/tree-shake.js +21 -0
- package/dist/plugins/implementations/trpc.d.ts +7 -0
- package/dist/plugins/implementations/trpc.js +15 -0
- package/dist/plugins/implementations/ts.d.ts +7 -0
- package/dist/plugins/implementations/ts.js +15 -0
- package/dist/plugins/implementations/typescript.d.ts +7 -0
- package/dist/plugins/implementations/typescript.js +15 -0
- package/dist/plugins/implementations/unocss.d.ts +7 -0
- package/dist/plugins/implementations/unocss.js +25 -0
- package/dist/plugins/implementations/upi-payment.d.ts +7 -0
- package/dist/plugins/implementations/upi-payment.js +19 -0
- package/dist/plugins/implementations/url.d.ts +7 -0
- package/dist/plugins/implementations/url.js +27 -0
- package/dist/plugins/implementations/vercel.d.ts +7 -0
- package/dist/plugins/implementations/vercel.js +15 -0
- package/dist/plugins/implementations/visualizer.d.ts +7 -0
- package/dist/plugins/implementations/visualizer.js +15 -0
- package/dist/plugins/implementations/vite-svg-loader.d.ts +7 -0
- package/dist/plugins/implementations/vite-svg-loader.js +27 -0
- package/dist/plugins/implementations/vitest.d.ts +7 -0
- package/dist/plugins/implementations/vitest.js +15 -0
- package/dist/plugins/implementations/vue-i18n-next.d.ts +7 -0
- package/dist/plugins/implementations/vue-i18n-next.js +18 -0
- package/dist/plugins/implementations/vue-i18n.d.ts +7 -0
- package/dist/plugins/implementations/vue-i18n.js +15 -0
- package/dist/plugins/implementations/vue-layouts.d.ts +8 -0
- package/dist/plugins/implementations/vue-layouts.js +35 -0
- package/dist/plugins/implementations/vue.d.ts +8 -0
- package/dist/plugins/implementations/vue.js +35 -0
- package/dist/plugins/implementations/vuex.d.ts +8 -0
- package/dist/plugins/implementations/vuex.js +35 -0
- package/dist/plugins/implementations/wasm-sandbox.d.ts +7 -0
- package/dist/plugins/implementations/wasm-sandbox.js +30 -0
- package/dist/plugins/implementations/webp.d.ts +7 -0
- package/dist/plugins/implementations/webp.js +27 -0
- package/dist/plugins/implementations/windicss.d.ts +7 -0
- package/dist/plugins/implementations/windicss.js +25 -0
- package/dist/plugins/implementations/workbox.d.ts +7 -0
- package/dist/plugins/implementations/workbox.js +15 -0
- package/dist/plugins/implementations/xstate.d.ts +7 -0
- package/dist/plugins/implementations/xstate.js +18 -0
- package/dist/plugins/implementations/zod.d.ts +7 -0
- package/dist/plugins/implementations/zod.js +15 -0
- package/dist/plugins/implementations/zustand-devtools.d.ts +7 -0
- package/dist/plugins/implementations/zustand-devtools.js +18 -0
- package/dist/plugins/implementations/zustand.d.ts +8 -0
- package/dist/plugins/implementations/zustand.js +35 -0
- package/dist/plugins/index.d.ts +49 -0
- package/dist/plugins/index.js +117 -0
- package/dist/plugins/js-transform.d.ts +2 -0
- package/dist/plugins/js-transform.js +49 -0
- package/dist/plugins/json.d.ts +2 -0
- package/dist/plugins/json.js +34 -0
- package/dist/plugins/pluginWorker.mjs +95 -0
- package/dist/plugins/ported/adapter.d.ts +92 -0
- package/dist/plugins/ported/adapter.js +226 -0
- package/dist/plugins/registry.d.ts +51 -0
- package/dist/plugins/registry.js +151 -0
- package/dist/plugins/reporter.d.ts +5 -0
- package/dist/plugins/reporter.js +47 -0
- package/dist/plugins/samplePlugin.mjs +4 -0
- package/dist/plugins/sandbox.d.ts +12 -0
- package/dist/plugins/sandbox.js +126 -0
- package/dist/plugins/signer.d.ts +53 -0
- package/dist/plugins/signer.js +109 -0
- package/dist/plugins/static.d.ts +2 -0
- package/dist/plugins/static.js +47 -0
- package/dist/plugins/svelte.d.ts +7 -0
- package/dist/plugins/svelte.js +27 -0
- package/dist/plugins/testSandbox.d.ts +1 -0
- package/dist/plugins/testSandbox.js +14 -0
- package/dist/plugins/verify.d.ts +3 -0
- package/dist/plugins/verify.js +113 -0
- package/dist/plugins/vue.d.ts +7 -0
- package/dist/plugins/vue.js +86 -0
- package/dist/plugins/wasm-runtime.d.ts +15 -0
- package/dist/plugins/wasm-runtime.js +33 -0
- package/dist/plugins/wasm.d.ts +5 -0
- package/dist/plugins/wasm.js +44 -0
- package/dist/polyfills/corejs.d.ts +9 -0
- package/dist/polyfills/corejs.js +18 -0
- package/dist/presets/core.d.ts +111 -0
- package/dist/presets/core.js +239 -0
- package/dist/presets/frameworks.d.ts +34 -0
- package/dist/presets/frameworks.js +270 -0
- package/dist/presets/index.d.ts +8 -0
- package/dist/presets/index.js +3 -0
- package/dist/presets/infrastructure.d.ts +2 -0
- package/dist/presets/infrastructure.js +33 -0
- package/dist/presets/spa.d.ts +2 -0
- package/dist/presets/spa.js +15 -0
- package/dist/presets/ssg.d.ts +2 -0
- package/dist/presets/ssg.js +9 -0
- package/dist/presets/ssr.d.ts +2 -0
- package/dist/presets/ssr.js +13 -0
- package/dist/repro/dashboard.d.ts +83 -0
- package/dist/repro/dashboard.js +251 -0
- package/dist/repro/github.d.ts +26 -0
- package/dist/repro/github.js +73 -0
- package/dist/resolve/css-precedence.d.ts +16 -0
- package/dist/resolve/css-precedence.js +56 -0
- package/dist/resolve/graph.d.ts +48 -0
- package/dist/resolve/graph.js +232 -0
- package/dist/resolve/utils.d.ts +13 -0
- package/dist/resolve/utils.js +53 -0
- package/dist/runtime/client.d.ts +9 -0
- package/dist/runtime/client.js +218 -0
- package/dist/runtime/error-overlay.d.ts +15 -0
- package/dist/runtime/error-overlay.js +327 -0
- package/dist/runtime/federation-fallback.d.ts +67 -0
- package/dist/runtime/federation-fallback.js +225 -0
- package/dist/runtime/federation.d.ts +27 -0
- package/dist/runtime/federation.js +210 -0
- package/dist/runtime/federation_runtime.js +90 -0
- package/dist/runtime/hmr-client.d.ts +5 -0
- package/dist/runtime/hmr-client.js +70 -0
- package/dist/security/anomaly.d.ts +41 -0
- package/dist/security/anomaly.js +77 -0
- package/dist/server/security-headers.d.ts +37 -0
- package/dist/server/security-headers.js +110 -0
- package/dist/ssr/adapters/edge.d.ts +12 -0
- package/dist/ssr/adapters/edge.js +26 -0
- package/dist/ssr/adapters/index.d.ts +23 -0
- package/dist/ssr/adapters/index.js +58 -0
- package/dist/ssr/app-router.d.ts +24 -0
- package/dist/ssr/app-router.js +70 -0
- package/dist/ssr/edge/handlers.d.ts +24 -0
- package/dist/ssr/edge/handlers.js +48 -0
- package/dist/ssr/image.d.ts +24 -0
- package/dist/ssr/image.js +38 -0
- package/dist/ssr/isr.d.ts +14 -0
- package/dist/ssr/isr.js +29 -0
- package/dist/ssr/rsc.d.ts +19 -0
- package/dist/ssr/rsc.js +33 -0
- package/dist/ssr/streaming.d.ts +31 -0
- package/dist/ssr/streaming.js +78 -0
- package/dist/ssr/universal-engine.d.ts +36 -0
- package/dist/ssr/universal-engine.js +139 -0
- package/dist/templates/manager.d.ts +28 -0
- package/dist/templates/manager.js +162 -0
- package/dist/templates/starters/angular-spa.d.ts +6 -0
- package/dist/templates/starters/angular-spa.js +149 -0
- package/dist/templates/starters/edge.d.ts +6 -0
- package/dist/templates/starters/edge.js +93 -0
- package/dist/templates/starters/fintech.d.ts +6 -0
- package/dist/templates/starters/fintech.js +211 -0
- package/dist/templates/starters/monorepo.d.ts +6 -0
- package/dist/templates/starters/monorepo.js +133 -0
- package/dist/templates/starters/nextjs-app.d.ts +13 -0
- package/dist/templates/starters/nextjs-app.js +116 -0
- package/dist/templates/starters/preact-spa.d.ts +6 -0
- package/dist/templates/starters/preact-spa.js +97 -0
- package/dist/templates/starters/premium-dashboard.d.ts +6 -0
- package/dist/templates/starters/premium-dashboard.js +762 -0
- package/dist/templates/starters/react-spa.d.ts +6 -0
- package/dist/templates/starters/react-spa.js +152 -0
- package/dist/templates/starters/react-ssr.d.ts +6 -0
- package/dist/templates/starters/react-ssr.js +190 -0
- package/dist/templates/starters/remix-app.d.ts +12 -0
- package/dist/templates/starters/remix-app.js +108 -0
- package/dist/templates/starters/solid-spa.d.ts +6 -0
- package/dist/templates/starters/solid-spa.js +158 -0
- package/dist/templates/starters/svelte-spa.d.ts +6 -0
- package/dist/templates/starters/svelte-spa.js +147 -0
- package/dist/templates/starters/vue-spa.d.ts +6 -0
- package/dist/templates/starters/vue-spa.js +136 -0
- package/dist/test/api.d.ts +58 -0
- package/dist/test/api.js +154 -0
- package/dist/test/coverage.d.ts +1 -0
- package/dist/test/coverage.js +134 -0
- package/dist/test/determinism.d.ts +1 -0
- package/dist/test/determinism.js +122 -0
- package/dist/test/regression.d.ts +1 -0
- package/dist/test/regression.js +30 -0
- package/dist/test/runner.d.ts +1 -0
- package/dist/test/runner.js +159 -0
- package/dist/test-server.d.ts +1 -0
- package/dist/test-server.js +22 -0
- package/dist/ui/terminal-warnings.d.ts +10 -0
- package/dist/ui/terminal-warnings.js +26 -0
- package/dist/ui/types.d.ts +13 -0
- package/dist/ui/types.js +5 -0
- package/dist/ui/warning-detector.d.ts +46 -0
- package/dist/ui/warning-detector.js +178 -0
- package/dist/ui/warning-library.d.ts +51 -0
- package/dist/ui/warning-library.js +283 -0
- package/dist/utils/interactive.d.ts +2 -0
- package/dist/utils/interactive.js +37 -0
- package/dist/utils/logger.d.ts +26 -0
- package/dist/utils/logger.js +130 -0
- package/dist/utils/path-normalize.d.ts +24 -0
- package/dist/utils/path-normalize.js +37 -0
- package/dist/visual/chart-generator.d.ts +11 -0
- package/dist/visual/chart-generator.js +30 -0
- package/dist/visual/client/renderer.d.ts +31 -0
- package/dist/visual/client/renderer.js +98 -0
- package/dist/visual/federation-editor.d.ts +1 -0
- package/dist/visual/federation-editor.js +231 -0
- package/dist/visual/graph-engine.d.ts +38 -0
- package/dist/visual/graph-engine.js +64 -0
- package/dist/visual/graph-ui.d.ts +2 -0
- package/dist/visual/graph-ui.js +119 -0
- package/dist/visual/graph-visualizer.d.ts +69 -0
- package/dist/visual/graph-visualizer.js +282 -0
- package/dist/visual/root-cause.d.ts +83 -0
- package/dist/visual/root-cause.js +265 -0
- package/package.json +169 -0
|
@@ -0,0 +1,780 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Universal Framework Transformer
|
|
3
|
+
* Version-agnostic transformer that works with any framework version
|
|
4
|
+
* Automatically adapts to the installed version
|
|
5
|
+
*/
|
|
6
|
+
import path from 'path';
|
|
7
|
+
import fs from 'fs/promises';
|
|
8
|
+
import { getFrameworkPreset } from '../presets/frameworks.js';
|
|
9
|
+
import { log } from '../utils/logger.js';
|
|
10
|
+
import { createRequire } from 'module';
|
|
11
|
+
import * as esbuild from 'esbuild';
|
|
12
|
+
import { canonicalHash } from '../core/engine/hash.js';
|
|
13
|
+
const _require = createRequire(import.meta.url);
|
|
14
|
+
export class UniversalTransformer {
|
|
15
|
+
constructor(root, options) {
|
|
16
|
+
this.transformers = new Map();
|
|
17
|
+
this.packageVersionCache = new Map();
|
|
18
|
+
this.transformCache = new Map();
|
|
19
|
+
this.cacheEnabled = true;
|
|
20
|
+
this.root = root;
|
|
21
|
+
this.cacheEnabled = options?.cache !== false;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Clear transformation cache (useful for HMR)
|
|
25
|
+
*/
|
|
26
|
+
clearCache(filePath) {
|
|
27
|
+
if (filePath) {
|
|
28
|
+
this.transformCache.delete(filePath);
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
this.transformCache.clear();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Transform code based on framework
|
|
36
|
+
* Automatically detects and uses the installed version
|
|
37
|
+
*/
|
|
38
|
+
async transform(options) {
|
|
39
|
+
const { filePath, code, framework, isDev = true } = options;
|
|
40
|
+
// Advanced Deterministic Cache (Phase F1)
|
|
41
|
+
// Ensure that identical inputs ALWAYS produce identical outputs
|
|
42
|
+
// This is critical for Tier 2/3 frameworks to be "production ready"
|
|
43
|
+
if (this.cacheEnabled) {
|
|
44
|
+
const h = canonicalHash(code + framework + (isDev ? 'dev' : 'prod')).substring(0, 16);
|
|
45
|
+
const cacheKey = `${filePath}:${h}`;
|
|
46
|
+
const cached = this.transformCache.get(cacheKey);
|
|
47
|
+
if (cached) {
|
|
48
|
+
return cached;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
const preset = getFrameworkPreset(framework);
|
|
52
|
+
// Route to appropriate transformer
|
|
53
|
+
let result;
|
|
54
|
+
switch (framework) {
|
|
55
|
+
case 'react':
|
|
56
|
+
case 'next':
|
|
57
|
+
case 'remix':
|
|
58
|
+
result = await this.transformReact(code, filePath, isDev);
|
|
59
|
+
break;
|
|
60
|
+
case 'vue':
|
|
61
|
+
case 'nuxt':
|
|
62
|
+
result = await this.transformVue(code, filePath, isDev);
|
|
63
|
+
break;
|
|
64
|
+
case 'svelte':
|
|
65
|
+
result = await this.transformSvelte(code, filePath, isDev);
|
|
66
|
+
break;
|
|
67
|
+
case 'angular':
|
|
68
|
+
result = await this.transformAngular(code, filePath, isDev);
|
|
69
|
+
break;
|
|
70
|
+
case 'solid':
|
|
71
|
+
result = await this.transformSolid(code, filePath, isDev);
|
|
72
|
+
break;
|
|
73
|
+
case 'preact':
|
|
74
|
+
result = await this.transformPreact(code, filePath, isDev);
|
|
75
|
+
break;
|
|
76
|
+
case 'qwik':
|
|
77
|
+
result = await this.transformQwik(code, filePath, isDev);
|
|
78
|
+
break;
|
|
79
|
+
case 'lit':
|
|
80
|
+
result = await this.transformLit(code, filePath, isDev);
|
|
81
|
+
break;
|
|
82
|
+
case 'astro':
|
|
83
|
+
result = await this.transformAstro(code, filePath, isDev);
|
|
84
|
+
break;
|
|
85
|
+
case 'vanilla':
|
|
86
|
+
default:
|
|
87
|
+
result = await this.transformVanilla(code, filePath, isDev);
|
|
88
|
+
break;
|
|
89
|
+
}
|
|
90
|
+
// Final Normalization Pass (Phase F1 Honest)
|
|
91
|
+
// Skip for binary files, compiled code, and CSS
|
|
92
|
+
const skipNormalization = options.filePath.endsWith('.css') ||
|
|
93
|
+
options.filePath.endsWith('.node') ||
|
|
94
|
+
options.filePath.includes('/compiler/') ||
|
|
95
|
+
options.filePath.includes('node_modules/svelte/compiler') ||
|
|
96
|
+
options.filePath.includes('.wasm');
|
|
97
|
+
if (!skipNormalization) {
|
|
98
|
+
try {
|
|
99
|
+
const targetFormat = options.format || (options.target === 'node' ? 'cjs' : 'esm');
|
|
100
|
+
const finalResult = await esbuild.transform(result.code, {
|
|
101
|
+
define: options.define || {},
|
|
102
|
+
loader: 'tsx',
|
|
103
|
+
format: targetFormat,
|
|
104
|
+
platform: options.target === 'node' ? 'node' : 'browser',
|
|
105
|
+
target: isDev ? 'es2020' : 'esnext',
|
|
106
|
+
minify: false
|
|
107
|
+
});
|
|
108
|
+
result.code = finalResult.code;
|
|
109
|
+
}
|
|
110
|
+
catch (err) {
|
|
111
|
+
// Log normalization failures for debugging
|
|
112
|
+
// These are usually non-critical but good to know about
|
|
113
|
+
if (!err.message.includes('Unexpected') && !err.message.includes('Expected')) {
|
|
114
|
+
if (process.env.DEBUG) {
|
|
115
|
+
log.debug(`Final normalization skipped for ${options.filePath}: ${err.message}`);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
// Cache the result (Advanced Determinism)
|
|
121
|
+
if (this.cacheEnabled) {
|
|
122
|
+
const h = canonicalHash(code + framework + (isDev ? 'dev' : 'prod')).substring(0, 16);
|
|
123
|
+
const cacheKey = `${filePath}:${h}`;
|
|
124
|
+
this.transformCache.set(cacheKey, result);
|
|
125
|
+
}
|
|
126
|
+
return result;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* React Transformer - Works with all React versions (16+)
|
|
130
|
+
*/
|
|
131
|
+
async transformReact(code, filePath, isDev, jsxOptions) {
|
|
132
|
+
const ext = path.extname(filePath);
|
|
133
|
+
// Only transform JSX/TSX files
|
|
134
|
+
if (ext !== '.jsx' && ext !== '.tsx') {
|
|
135
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
136
|
+
}
|
|
137
|
+
try {
|
|
138
|
+
const babelModule = await import('@babel/core');
|
|
139
|
+
const babel = babelModule.default || babelModule;
|
|
140
|
+
// Detect React version to use appropriate transform
|
|
141
|
+
const reactVersion = await this.getPackageVersion('react');
|
|
142
|
+
const useAutomatic = (reactVersion && parseInt(reactVersion) >= 17) || !!jsxOptions?.importSource;
|
|
143
|
+
// Resolve presets from tool's dependencies, not user's project
|
|
144
|
+
const output = await babel.transformAsync(code, {
|
|
145
|
+
filename: filePath,
|
|
146
|
+
presets: [
|
|
147
|
+
[
|
|
148
|
+
_require.resolve('@babel/preset-react'),
|
|
149
|
+
{
|
|
150
|
+
runtime: useAutomatic ? 'automatic' : 'classic',
|
|
151
|
+
development: isDev,
|
|
152
|
+
importSource: jsxOptions?.importSource // For Preact/others
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
_require.resolve('@babel/preset-typescript')
|
|
156
|
+
],
|
|
157
|
+
plugins: (() => {
|
|
158
|
+
const plugins = [];
|
|
159
|
+
if (isDev) {
|
|
160
|
+
try {
|
|
161
|
+
// Fix validation error in tests by skipping environment check
|
|
162
|
+
plugins.push([_require.resolve('react-refresh/babel'), { skipEnvCheck: true }]);
|
|
163
|
+
}
|
|
164
|
+
catch (e) {
|
|
165
|
+
// React refresh not found, skip
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
return plugins;
|
|
169
|
+
})(),
|
|
170
|
+
sourceMaps: isDev ? 'inline' : false
|
|
171
|
+
});
|
|
172
|
+
let finalCode = output?.code || code;
|
|
173
|
+
// Inject HMR context for React
|
|
174
|
+
if (isDev) {
|
|
175
|
+
// Normalize path to prevent escape sequence issues on Windows
|
|
176
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
177
|
+
const hmrFooter = `
|
|
178
|
+
|
|
179
|
+
// Nuclie Advanced HMR (React)
|
|
180
|
+
import { createHotContext } from '/@nuclie/client';
|
|
181
|
+
if (!import.meta.hot) {
|
|
182
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
183
|
+
}
|
|
184
|
+
if (import.meta.hot) {
|
|
185
|
+
import.meta.hot.accept();
|
|
186
|
+
}
|
|
187
|
+
`;
|
|
188
|
+
finalCode = finalCode + hmrFooter;
|
|
189
|
+
}
|
|
190
|
+
return {
|
|
191
|
+
code: finalCode,
|
|
192
|
+
map: output?.map ? JSON.stringify(output.map) : undefined
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
catch (error) {
|
|
196
|
+
// Display error prominently to user
|
|
197
|
+
const relativePath = filePath.replace(this.root, '').replace(/^\//, '');
|
|
198
|
+
const errorMessage = error.message?.split('\n')[0] || String(error);
|
|
199
|
+
const lineMatch = error.loc?.line || error.message?.match(/\(\d+:\d+\)/)?.[0];
|
|
200
|
+
log.projectError({
|
|
201
|
+
file: relativePath,
|
|
202
|
+
message: errorMessage,
|
|
203
|
+
line: error.loc?.line,
|
|
204
|
+
column: error.loc?.column,
|
|
205
|
+
type: 'Transformation Error',
|
|
206
|
+
plugin: 'nuclie:universal-transformer'
|
|
207
|
+
});
|
|
208
|
+
// Re-throw the error instead of falling back
|
|
209
|
+
throw error;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Vue Transformer - Works with all Vue versions (2.x, 3.x)
|
|
214
|
+
*/
|
|
215
|
+
async transformVue(code, filePath, isDev) {
|
|
216
|
+
if (!filePath.endsWith('.vue')) {
|
|
217
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
218
|
+
}
|
|
219
|
+
try {
|
|
220
|
+
let compiler;
|
|
221
|
+
try {
|
|
222
|
+
const compilerPath = _require.resolve('@vue/compiler-sfc', { paths: [this.root, process.cwd()] });
|
|
223
|
+
compiler = await import(compilerPath);
|
|
224
|
+
}
|
|
225
|
+
catch {
|
|
226
|
+
log.warn('No Vue 3 compiler found, using fallback with HMR');
|
|
227
|
+
// Fallback: Return raw code with HMR wrapper
|
|
228
|
+
if (isDev) {
|
|
229
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
230
|
+
const wrappedCode = `
|
|
231
|
+
// Vue fallback (compiler missing)
|
|
232
|
+
const _sfc_main = { template: \`${code.replace(/`/g, '\\`')}\` };
|
|
233
|
+
export default _sfc_main;
|
|
234
|
+
|
|
235
|
+
// Nuclie Advanced HMR (Vue - Fallback)
|
|
236
|
+
import { createHotContext } from '/@nuclie/client';
|
|
237
|
+
if (!import.meta.hot) {
|
|
238
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
239
|
+
}
|
|
240
|
+
if (import.meta.hot) {
|
|
241
|
+
import.meta.hot.accept();
|
|
242
|
+
}
|
|
243
|
+
`;
|
|
244
|
+
return { code: wrappedCode };
|
|
245
|
+
}
|
|
246
|
+
return { code: `export default { template: \`${code.replace(/`/g, '\\`')}\` };` };
|
|
247
|
+
}
|
|
248
|
+
if (!compiler.parse)
|
|
249
|
+
return { code };
|
|
250
|
+
const { descriptor } = compiler.parse(code, { filename: filePath });
|
|
251
|
+
const scopeId = `data-v-${Math.random().toString(36).substring(2, 9)}`;
|
|
252
|
+
const hasTemplate = !!descriptor.template;
|
|
253
|
+
let scriptContent = 'const _sfc_main = {};';
|
|
254
|
+
if (descriptor.script || descriptor.scriptSetup) {
|
|
255
|
+
const compiledScript = compiler.compileScript(descriptor, {
|
|
256
|
+
id: scopeId,
|
|
257
|
+
inlineTemplate: hasTemplate,
|
|
258
|
+
templateOptions: hasTemplate ? {
|
|
259
|
+
source: descriptor.template.content,
|
|
260
|
+
filename: filePath,
|
|
261
|
+
id: scopeId,
|
|
262
|
+
scoped: descriptor.styles.some((s) => s.scoped),
|
|
263
|
+
compilerOptions: {
|
|
264
|
+
scopeId: descriptor.styles.some((s) => s.scoped) ? scopeId : undefined
|
|
265
|
+
}
|
|
266
|
+
} : undefined
|
|
267
|
+
});
|
|
268
|
+
scriptContent = compiledScript.content;
|
|
269
|
+
// Replace "export default" but keep the object/definition intact
|
|
270
|
+
// Vue's compileScript for setup usually exports an object with a setup() function
|
|
271
|
+
const exportDefaultRegex = /export\s+default\s+/;
|
|
272
|
+
if (exportDefaultRegex.test(scriptContent)) {
|
|
273
|
+
scriptContent = scriptContent.replace(exportDefaultRegex, 'const _sfc_main = ');
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
// Fallback for template-only components or if script-setup didn't inline
|
|
277
|
+
let templateCode = '';
|
|
278
|
+
if (hasTemplate && !scriptContent.includes('const _sfc_main =')) {
|
|
279
|
+
const templateResult = compiler.compileTemplate({
|
|
280
|
+
source: descriptor.template.content,
|
|
281
|
+
filename: filePath,
|
|
282
|
+
id: scopeId,
|
|
283
|
+
scoped: descriptor.styles.some((s) => s.scoped),
|
|
284
|
+
compilerOptions: {
|
|
285
|
+
scopeId: descriptor.styles.some((s) => s.scoped) ? scopeId : undefined
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
templateCode = templateResult.code.replace('export function render', 'const _sfc_render = function render');
|
|
289
|
+
if (!scriptContent.includes('const _sfc_main =')) {
|
|
290
|
+
scriptContent = 'const _sfc_main = {};\n' + scriptContent;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
let cssCode = '';
|
|
294
|
+
for (const style of descriptor.styles) {
|
|
295
|
+
const styleResult = compiler.compileStyle({
|
|
296
|
+
source: style.content,
|
|
297
|
+
filename: filePath,
|
|
298
|
+
id: scopeId,
|
|
299
|
+
scoped: style.scoped
|
|
300
|
+
});
|
|
301
|
+
cssCode += styleResult.code;
|
|
302
|
+
}
|
|
303
|
+
let output = `
|
|
304
|
+
${scriptContent}
|
|
305
|
+
${templateCode ? `
|
|
306
|
+
${templateCode}
|
|
307
|
+
_sfc_main.render = _sfc_render;
|
|
308
|
+
` : ''}
|
|
309
|
+
|
|
310
|
+
// Inject CSS
|
|
311
|
+
${cssCode ? `
|
|
312
|
+
if (typeof document !== 'undefined') {
|
|
313
|
+
const _style = document.createElement('style');
|
|
314
|
+
_style.innerHTML = ${JSON.stringify(cssCode)};
|
|
315
|
+
document.head.appendChild(_style);
|
|
316
|
+
}
|
|
317
|
+
` : ''}
|
|
318
|
+
|
|
319
|
+
${descriptor.styles.some((s) => s.scoped) ? `_sfc_main.__scopeId = "${scopeId}";` : ''}
|
|
320
|
+
_sfc_main.__file = "${filePath}";
|
|
321
|
+
|
|
322
|
+
export default _sfc_main;
|
|
323
|
+
`;
|
|
324
|
+
// Add HMR footer for Vue (only in dev mode)
|
|
325
|
+
if (isDev) {
|
|
326
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
327
|
+
output += `
|
|
328
|
+
|
|
329
|
+
// Nuclie Advanced HMR (Vue)
|
|
330
|
+
import { createHotContext } from '/@nuclie/client';
|
|
331
|
+
if (!import.meta.hot) {
|
|
332
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
333
|
+
}
|
|
334
|
+
if (import.meta.hot) {
|
|
335
|
+
_sfc_main.__hmrId = "${scopeId}";
|
|
336
|
+
import.meta.hot.accept((modules) => {
|
|
337
|
+
const newMod = modules[0];
|
|
338
|
+
if (!newMod) return;
|
|
339
|
+
// Vue HMR: Component hot-reload
|
|
340
|
+
// Real Vue HMR is complex, for now we trigger reload
|
|
341
|
+
});
|
|
342
|
+
}
|
|
343
|
+
`;
|
|
344
|
+
}
|
|
345
|
+
return { code: output };
|
|
346
|
+
}
|
|
347
|
+
catch (error) {
|
|
348
|
+
log.error(`Vue transform failed for ${filePath}:`, error.message);
|
|
349
|
+
return { code };
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* Svelte Transformer - Works with all Svelte versions (3.x, 4.x, 5.x)
|
|
354
|
+
*/
|
|
355
|
+
async transformSvelte(code, filePath, isDev) {
|
|
356
|
+
if (!filePath.endsWith('.svelte')) {
|
|
357
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
358
|
+
}
|
|
359
|
+
try {
|
|
360
|
+
let svelte;
|
|
361
|
+
try {
|
|
362
|
+
const compilerPath = _require.resolve('svelte/compiler', { paths: [this.root, process.cwd()] });
|
|
363
|
+
const mod = await import(compilerPath);
|
|
364
|
+
svelte = typeof mod.compile === 'function' ? mod : (mod.default || mod);
|
|
365
|
+
}
|
|
366
|
+
catch {
|
|
367
|
+
const mod = await import('svelte/compiler');
|
|
368
|
+
svelte = typeof mod.compile === 'function' ? mod : (mod.default || mod);
|
|
369
|
+
}
|
|
370
|
+
const version = await this.getPackageVersion('svelte');
|
|
371
|
+
const isSvelte5 = version && version.startsWith('5');
|
|
372
|
+
const result = svelte.compile(code, {
|
|
373
|
+
filename: filePath,
|
|
374
|
+
dev: isDev,
|
|
375
|
+
css: 'injected',
|
|
376
|
+
generate: isSvelte5 ? 'client' : 'dom',
|
|
377
|
+
hydratable: true,
|
|
378
|
+
enableSourcemap: isDev
|
|
379
|
+
});
|
|
380
|
+
let finalCode = result.js.code;
|
|
381
|
+
// Advanced HMR for Svelte (Production-Grade)
|
|
382
|
+
if (isDev) {
|
|
383
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
384
|
+
const componentId = canonicalHash(filePath).substring(0, 16);
|
|
385
|
+
finalCode += `
|
|
386
|
+
|
|
387
|
+
// Nuclie Advanced HMR (Svelte)
|
|
388
|
+
import { createHotContext } from '/@nuclie/client';
|
|
389
|
+
if (!import.meta.hot) {
|
|
390
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
391
|
+
}
|
|
392
|
+
if (import.meta.hot) {
|
|
393
|
+
import.meta.hot.accept((newModule) => {
|
|
394
|
+
if (!newModule) return;
|
|
395
|
+
// Svelte HMR: Re-create component instances
|
|
396
|
+
const instances = window.__NUCLIE_SVELTE_INSTANCES__ || (window.__NUCLIE_SVELTE_INSTANCES__ = new Map());
|
|
397
|
+
const componentInstances = instances.get("${componentId}") || [];
|
|
398
|
+
componentInstances.forEach(instance => {
|
|
399
|
+
if (instance && instance.$set) {
|
|
400
|
+
// Preserve state and re-render
|
|
401
|
+
const state = instance.$capture_state ? instance.$capture_state() : {};
|
|
402
|
+
instance.$destroy();
|
|
403
|
+
const NewComponent = newModule.default;
|
|
404
|
+
const newInstance = new NewComponent({
|
|
405
|
+
target: instance.$$.root,
|
|
406
|
+
props: instance.$$.props
|
|
407
|
+
});
|
|
408
|
+
if (newInstance.$inject_state && Object.keys(state).length > 0) {
|
|
409
|
+
newInstance.$inject_state(state);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
});
|
|
413
|
+
});
|
|
414
|
+
}
|
|
415
|
+
`;
|
|
416
|
+
}
|
|
417
|
+
return {
|
|
418
|
+
code: finalCode,
|
|
419
|
+
map: result.js.map ? JSON.stringify(result.js.map) : undefined
|
|
420
|
+
};
|
|
421
|
+
}
|
|
422
|
+
catch (error) {
|
|
423
|
+
log.error(`Svelte transform failed for ${filePath}: ${error.stack || error.message}`);
|
|
424
|
+
return { code };
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* Angular Transformer - Works with ALL Angular versions (2-17+)
|
|
429
|
+
*/
|
|
430
|
+
async transformAngular(code, filePath, isDev) {
|
|
431
|
+
try {
|
|
432
|
+
const ngVersion = await this.getPackageVersion('@angular/core');
|
|
433
|
+
const majorVersion = ngVersion ? parseInt(ngVersion.split('.')[0]) : 17;
|
|
434
|
+
if (filePath.endsWith('.ts')) {
|
|
435
|
+
const ts = await import('typescript');
|
|
436
|
+
try {
|
|
437
|
+
const compilerOptions = {
|
|
438
|
+
target: ts.ScriptTarget.ES2020,
|
|
439
|
+
module: ts.ModuleKind.ESNext,
|
|
440
|
+
experimentalDecorators: true,
|
|
441
|
+
emitDecoratorMetadata: true,
|
|
442
|
+
useDefineForClassFields: majorVersion >= 14 ? false : true,
|
|
443
|
+
};
|
|
444
|
+
const result = ts.transpileModule(code, {
|
|
445
|
+
compilerOptions,
|
|
446
|
+
fileName: filePath
|
|
447
|
+
});
|
|
448
|
+
let finalCode = result.outputText;
|
|
449
|
+
// Advanced HMR for Angular (Production-Grade)
|
|
450
|
+
if (isDev) {
|
|
451
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
452
|
+
const componentId = canonicalHash(filePath).substring(0, 16);
|
|
453
|
+
finalCode += `
|
|
454
|
+
|
|
455
|
+
// Nuclie Advanced HMR (Angular)
|
|
456
|
+
import { createHotContext } from '/@nuclie/client';
|
|
457
|
+
if (!import.meta.hot) {
|
|
458
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
459
|
+
}
|
|
460
|
+
if (import.meta.hot) {
|
|
461
|
+
import.meta.hot.accept((newModule) => {
|
|
462
|
+
if (!newModule) return;
|
|
463
|
+
// Angular HMR: Re-bootstrap components
|
|
464
|
+
const registry = window.__NUCLIE_ANGULAR_REGISTRY__ || (window.__NUCLIE_ANGULAR_REGISTRY__ = new Map());
|
|
465
|
+
const components = registry.get("${componentId}") || [];
|
|
466
|
+
components.forEach(({ componentRef, viewContainerRef }) => {
|
|
467
|
+
if (componentRef && viewContainerRef) {
|
|
468
|
+
const NewComponent = newModule.default || Object.values(newModule)[0];
|
|
469
|
+
if (NewComponent) {
|
|
470
|
+
const index = viewContainerRef.indexOf(componentRef.hostView);
|
|
471
|
+
viewContainerRef.remove(index);
|
|
472
|
+
viewContainerRef.createComponent(NewComponent);
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
});
|
|
476
|
+
});
|
|
477
|
+
}
|
|
478
|
+
`;
|
|
479
|
+
}
|
|
480
|
+
return { code: finalCode, map: result.sourceMapText };
|
|
481
|
+
}
|
|
482
|
+
catch {
|
|
483
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
if (filePath.endsWith('.html')) {
|
|
487
|
+
return { code: `export default ${JSON.stringify(code)};` };
|
|
488
|
+
}
|
|
489
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
490
|
+
}
|
|
491
|
+
catch (error) {
|
|
492
|
+
log.error(`Angular transform failed for ${filePath}:`, error.message);
|
|
493
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
/**
|
|
497
|
+
* Solid Transformer - Works with all Solid versions
|
|
498
|
+
*/
|
|
499
|
+
async transformSolid(code, filePath, isDev) {
|
|
500
|
+
const ext = path.extname(filePath);
|
|
501
|
+
if (ext !== '.jsx' && ext !== '.tsx') {
|
|
502
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
503
|
+
}
|
|
504
|
+
try {
|
|
505
|
+
const babelModule = await import('@babel/core');
|
|
506
|
+
const babel = babelModule.default || babelModule;
|
|
507
|
+
const result = await babel.transformAsync(code, {
|
|
508
|
+
filename: filePath,
|
|
509
|
+
presets: [
|
|
510
|
+
_require.resolve('babel-preset-solid'),
|
|
511
|
+
_require.resolve('@babel/preset-typescript')
|
|
512
|
+
],
|
|
513
|
+
sourceMaps: isDev ? 'inline' : false
|
|
514
|
+
});
|
|
515
|
+
let finalCode = result?.code || code;
|
|
516
|
+
// Inject HMR context for Solid
|
|
517
|
+
if (isDev) {
|
|
518
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
519
|
+
const hmrFooter = `
|
|
520
|
+
|
|
521
|
+
// Nuclie Advanced HMR (Solid)
|
|
522
|
+
import { createHotContext } from '/@nuclie/client';
|
|
523
|
+
if (!import.meta.hot) {
|
|
524
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
525
|
+
}
|
|
526
|
+
if (import.meta.hot) {
|
|
527
|
+
import.meta.hot.accept((newModule) => {
|
|
528
|
+
if (!newModule) return;
|
|
529
|
+
// Solid HMR: Re-render root components
|
|
530
|
+
const roots = window.__NUCLIE_SOLID_ROOTS__ || (window.__NUCLIE_SOLID_ROOTS__ = new Map());
|
|
531
|
+
const componentRoots = roots.get("${normalizedPath}") || [];
|
|
532
|
+
componentRoots.forEach(({ dispose, container, component }) => {
|
|
533
|
+
if (dispose) dispose();
|
|
534
|
+
const NewComponent = newModule.default || newModule[component];
|
|
535
|
+
if (NewComponent && container) {
|
|
536
|
+
import('solid-js/web').then(({ render }) => {
|
|
537
|
+
render(() => NewComponent({}), container);
|
|
538
|
+
});
|
|
539
|
+
}
|
|
540
|
+
});
|
|
541
|
+
});
|
|
542
|
+
}
|
|
543
|
+
`;
|
|
544
|
+
finalCode = finalCode + hmrFooter;
|
|
545
|
+
}
|
|
546
|
+
return { code: finalCode, map: result?.map ? JSON.stringify(result.map) : undefined };
|
|
547
|
+
}
|
|
548
|
+
catch (error) {
|
|
549
|
+
log.warn(`Solid transform failed (babel-preset-solid missing?), using esbuild fallback with HMR`);
|
|
550
|
+
// Fallback: use esbuild but still add HMR
|
|
551
|
+
try {
|
|
552
|
+
const result = await esbuild.transform(code, {
|
|
553
|
+
loader: 'tsx',
|
|
554
|
+
sourcemap: isDev ? 'inline' : false,
|
|
555
|
+
format: 'esm',
|
|
556
|
+
target: 'es2020',
|
|
557
|
+
jsx: 'automatic',
|
|
558
|
+
jsxImportSource: 'solid-js'
|
|
559
|
+
});
|
|
560
|
+
let finalCode = result.code;
|
|
561
|
+
// Still add HMR even in fallback
|
|
562
|
+
if (isDev) {
|
|
563
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
564
|
+
const hmrFooter = `
|
|
565
|
+
|
|
566
|
+
// Nuclie Advanced HMR (Solid - Fallback)
|
|
567
|
+
import { createHotContext } from '/@nuclie/client';
|
|
568
|
+
if (!import.meta.hot) {
|
|
569
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
570
|
+
}
|
|
571
|
+
if (import.meta.hot) {
|
|
572
|
+
import.meta.hot.accept();
|
|
573
|
+
}
|
|
574
|
+
`;
|
|
575
|
+
finalCode = finalCode + hmrFooter;
|
|
576
|
+
}
|
|
577
|
+
return { code: finalCode, map: result.map };
|
|
578
|
+
}
|
|
579
|
+
catch (fallbackError) {
|
|
580
|
+
log.error(`Solid fallback also failed: ${fallbackError.message}`);
|
|
581
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* Preact Transformer - Works with all Preact versions
|
|
587
|
+
*/
|
|
588
|
+
async transformPreact(code, filePath, isDev) {
|
|
589
|
+
return this.transformReact(code, filePath, isDev, { importSource: 'preact' });
|
|
590
|
+
}
|
|
591
|
+
/**
|
|
592
|
+
* Qwik Transformer - Works with all Qwik versions
|
|
593
|
+
*/
|
|
594
|
+
async transformQwik(code, filePath, isDev) {
|
|
595
|
+
try {
|
|
596
|
+
let qwik;
|
|
597
|
+
try {
|
|
598
|
+
const compilerPath = _require.resolve('@builder.io/qwik/optimizer', { paths: [this.root, process.cwd()] });
|
|
599
|
+
const mod = await import(compilerPath);
|
|
600
|
+
qwik = typeof mod.createOptimizer === 'function' ? mod : (mod.default || mod);
|
|
601
|
+
}
|
|
602
|
+
catch {
|
|
603
|
+
const fallbackQwikOptimizer = '@builder.io/qwik/optimizer';
|
|
604
|
+
const mod = await import(fallbackQwikOptimizer);
|
|
605
|
+
qwik = typeof mod.createOptimizer === 'function' ? mod : (mod.default || mod);
|
|
606
|
+
}
|
|
607
|
+
const optimizer = await qwik.createOptimizer();
|
|
608
|
+
const result = await optimizer.transformModules({
|
|
609
|
+
input: [{ code, path: filePath }],
|
|
610
|
+
srcDir: path.join(this.root, 'src'),
|
|
611
|
+
entryStrategy: { type: 'single' },
|
|
612
|
+
minify: isDev ? 'none' : 'simplify',
|
|
613
|
+
sourceMaps: isDev,
|
|
614
|
+
transpile: true,
|
|
615
|
+
});
|
|
616
|
+
const output = result.modules[0];
|
|
617
|
+
const { transform } = await import('esbuild');
|
|
618
|
+
const final = await transform(output.code, {
|
|
619
|
+
loader: 'tsx',
|
|
620
|
+
format: 'esm',
|
|
621
|
+
target: 'es2022',
|
|
622
|
+
jsx: 'automatic',
|
|
623
|
+
jsxImportSource: '@builder.io/qwik'
|
|
624
|
+
});
|
|
625
|
+
return { code: final.code, map: final.map ? JSON.stringify(final.map) : undefined };
|
|
626
|
+
}
|
|
627
|
+
catch (error) {
|
|
628
|
+
log.error(`Qwik transform failed for ${filePath}: ${error.stack || error.message}`);
|
|
629
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
/**
|
|
633
|
+
* Lit Transformer - Works with all Lit versions
|
|
634
|
+
*/
|
|
635
|
+
async transformLit(code, filePath, isDev) {
|
|
636
|
+
try {
|
|
637
|
+
const ts = await import('typescript');
|
|
638
|
+
const result = ts.transpileModule(code, {
|
|
639
|
+
compilerOptions: {
|
|
640
|
+
target: ts.ScriptTarget.ES2020,
|
|
641
|
+
module: ts.ModuleKind.ESNext,
|
|
642
|
+
experimentalDecorators: true,
|
|
643
|
+
useDefineForClassFields: false,
|
|
644
|
+
moduleResolution: ts.ModuleResolutionKind.NodeJs
|
|
645
|
+
},
|
|
646
|
+
fileName: filePath
|
|
647
|
+
});
|
|
648
|
+
let finalCode = result.outputText;
|
|
649
|
+
// Advanced HMR for Lit (Production-Grade)
|
|
650
|
+
if (isDev) {
|
|
651
|
+
const normalizedPath = filePath.replace(/\\/g, '/');
|
|
652
|
+
const componentId = canonicalHash(filePath).substring(0, 16);
|
|
653
|
+
finalCode += `
|
|
654
|
+
|
|
655
|
+
// Nuclie Advanced HMR (Lit)
|
|
656
|
+
import { createHotContext } from '/@nuclie/client';
|
|
657
|
+
if (!import.meta.hot) {
|
|
658
|
+
import.meta.hot = createHotContext("${normalizedPath}");
|
|
659
|
+
}
|
|
660
|
+
if (import.meta.hot) {
|
|
661
|
+
import.meta.hot.accept((newModule) => {
|
|
662
|
+
if (!newModule) return;
|
|
663
|
+
// Lit HMR: Re-register custom elements
|
|
664
|
+
const registry = window.__NUCLIE_LIT_REGISTRY__ || (window.__NUCLIE_LIT_REGISTRY__ = new Map());
|
|
665
|
+
const elements = registry.get("${componentId}") || [];
|
|
666
|
+
elements.forEach(({ tagName, constructor }) => {
|
|
667
|
+
const instances = document.querySelectorAll(tagName);
|
|
668
|
+
instances.forEach(instance => {
|
|
669
|
+
const NewClass = newModule.default || newModule[constructor.name];
|
|
670
|
+
if (NewClass && customElements.get(tagName)) {
|
|
671
|
+
const attrs = Array.from(instance.attributes);
|
|
672
|
+
const children = Array.from(instance.childNodes);
|
|
673
|
+
const parent = instance.parentNode;
|
|
674
|
+
const newElement = document.createElement(tagName);
|
|
675
|
+
attrs.forEach(attr => newElement.setAttribute(attr.name, attr.value));
|
|
676
|
+
children.forEach(child => newElement.appendChild(child.cloneNode(true)));
|
|
677
|
+
parent?.replaceChild(newElement, instance);
|
|
678
|
+
}
|
|
679
|
+
});
|
|
680
|
+
});
|
|
681
|
+
});
|
|
682
|
+
}
|
|
683
|
+
`;
|
|
684
|
+
}
|
|
685
|
+
return { code: finalCode, map: result.sourceMapText };
|
|
686
|
+
}
|
|
687
|
+
catch (error) {
|
|
688
|
+
log.error(`Lit transform failed for ${filePath}:`, error.message);
|
|
689
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
/**
|
|
693
|
+
* Astro Transformer - Works with all Astro versions
|
|
694
|
+
*/
|
|
695
|
+
async transformAstro(code, filePath, isDev) {
|
|
696
|
+
if (!filePath.endsWith('.astro')) {
|
|
697
|
+
return this.transformVanilla(code, filePath, isDev);
|
|
698
|
+
}
|
|
699
|
+
try {
|
|
700
|
+
let astro;
|
|
701
|
+
try {
|
|
702
|
+
const compilerPath = _require.resolve('@astrojs/compiler', { paths: [this.root, process.cwd()] });
|
|
703
|
+
const mod = await import(compilerPath);
|
|
704
|
+
astro = typeof mod.transform === 'function' ? mod : (mod.default || mod);
|
|
705
|
+
}
|
|
706
|
+
catch {
|
|
707
|
+
const fallbackAstroCompiler = '@astrojs/compiler';
|
|
708
|
+
const mod = await import(fallbackAstroCompiler);
|
|
709
|
+
astro = typeof mod.transform === 'function' ? mod : (mod.default || mod);
|
|
710
|
+
}
|
|
711
|
+
const result = await astro.transform(code, {
|
|
712
|
+
filename: filePath,
|
|
713
|
+
sourcemap: isDev ? 'inline' : false,
|
|
714
|
+
});
|
|
715
|
+
return { code: result.code, map: result.map ? JSON.stringify(result.map) : undefined };
|
|
716
|
+
}
|
|
717
|
+
catch (error) {
|
|
718
|
+
log.error(`Astro transform failed for ${filePath}: ${error.stack || error.message}`);
|
|
719
|
+
return { code };
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
/**
|
|
723
|
+
* Vanilla JS/TS Transformer - Works with all versions
|
|
724
|
+
*/
|
|
725
|
+
async transformVanilla(code, filePath, isDev) {
|
|
726
|
+
// Fix for local monorepo: Skip transformation for known node-only packages
|
|
727
|
+
// that might be accidentally picked up by the customized resolver
|
|
728
|
+
if (filePath.includes('node_modules') && (filePath.includes('svelte/compiler') ||
|
|
729
|
+
filePath.includes('vite/dist'))) {
|
|
730
|
+
return { code };
|
|
731
|
+
}
|
|
732
|
+
const ext = path.extname(filePath);
|
|
733
|
+
if (ext === '.ts' || ext === '.tsx' || ext === '.js' || ext === '.jsx' || ext === '.mjs') {
|
|
734
|
+
try {
|
|
735
|
+
// Day 3: Bun Parser Lock
|
|
736
|
+
// Try Bun parser first (17x faster)
|
|
737
|
+
const { bunParser } = await import('./parser-bun.js');
|
|
738
|
+
if (bunParser.isBun()) {
|
|
739
|
+
try {
|
|
740
|
+
return await bunParser.transform(code, filePath, { isDev });
|
|
741
|
+
}
|
|
742
|
+
catch (e) {
|
|
743
|
+
log.warn(`Bun transform failed, falling back to esbuild: ${e}`);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
// Fallback to esbuild
|
|
747
|
+
const result = await esbuild.transform(code, {
|
|
748
|
+
loader: (ext === '.mjs' ? 'js' : ext.slice(1)),
|
|
749
|
+
sourcemap: isDev ? 'inline' : false,
|
|
750
|
+
format: 'esm',
|
|
751
|
+
target: 'es2020',
|
|
752
|
+
tsconfigRaw: { compilerOptions: { experimentalDecorators: true } }
|
|
753
|
+
});
|
|
754
|
+
return { code: result.code, map: result.map };
|
|
755
|
+
}
|
|
756
|
+
catch (error) {
|
|
757
|
+
log.error(`Vanilla transform failed for ${filePath}:`, error.message);
|
|
758
|
+
return { code };
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
return { code };
|
|
762
|
+
}
|
|
763
|
+
async getPackageVersion(packageName) {
|
|
764
|
+
if (this.packageVersionCache.has(packageName)) {
|
|
765
|
+
return this.packageVersionCache.get(packageName);
|
|
766
|
+
}
|
|
767
|
+
try {
|
|
768
|
+
const pkgPath = path.join(this.root, 'node_modules', packageName, 'package.json');
|
|
769
|
+
const content = await fs.readFile(pkgPath, 'utf-8');
|
|
770
|
+
const pkg = JSON.parse(content);
|
|
771
|
+
const version = pkg.version;
|
|
772
|
+
this.packageVersionCache.set(packageName, version);
|
|
773
|
+
return version;
|
|
774
|
+
}
|
|
775
|
+
catch {
|
|
776
|
+
this.packageVersionCache.set(packageName, null);
|
|
777
|
+
return null;
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
}
|