@ionify/ionify 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{cache-Y4NMRSZO.js → cache-LH24ZR2B.js} +1 -1
- package/dist/{chunk-GOZUBOYH.js → chunk-QQSYYX7B.js} +3 -0
- package/dist/cli/index.cjs +1544 -283
- package/dist/cli/index.js +1532 -282
- package/dist/client/hmr.js +39 -3
- package/dist/client/overlay.js +140 -25
- package/dist/client/react-refresh-runtime.js +57 -9
- package/dist/index.d.cts +71 -0
- package/dist/index.d.ts +71 -0
- package/dist/ionify_core.node +0 -0
- package/package.json +16 -12
|
@@ -148,6 +148,9 @@ function tryNativeTransform(mode, code, options) {
|
|
|
148
148
|
if (mode === "swc") throw err;
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
|
+
if (options.filename?.includes("Counter.jsx")) {
|
|
152
|
+
console.log("[TASK1 DEBUG] \u26A0\uFE0F No native transform available, returning null");
|
|
153
|
+
}
|
|
151
154
|
return null;
|
|
152
155
|
}
|
|
153
156
|
function ensureNativeGraph(graphPath, version) {
|