@absolutejs/absolute 0.19.0-beta.654 → 0.19.0-beta.655
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/cli/index.js +4 -0
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -719,8 +719,10 @@ var cliTag3 = (color, message) => `\x1B[2m${formatTimestamp()}\x1B[0m ${color}[c
|
|
|
719
719
|
return;
|
|
720
720
|
}, resolveJsxDevRuntimeCompatPath2 = () => {
|
|
721
721
|
const candidates = [
|
|
722
|
+
resolve6(import.meta.dir, "..", "..", "dist", "react", "jsxDevRuntimeCompat.js"),
|
|
722
723
|
resolve6(import.meta.dir, "..", "..", "react", "jsxDevRuntimeCompat.js"),
|
|
723
724
|
resolve6(import.meta.dir, "..", "..", "react", "jsxDevRuntimeCompat.ts"),
|
|
725
|
+
resolve6(import.meta.dir, "..", "..", "..", "dist", "react", "jsxDevRuntimeCompat.js"),
|
|
724
726
|
resolve6(import.meta.dir, "..", "..", "..", "react", "jsxDevRuntimeCompat.js"),
|
|
725
727
|
resolve6(import.meta.dir, "..", "..", "..", "src", "react", "jsxDevRuntimeCompat.ts")
|
|
726
728
|
];
|
|
@@ -2132,8 +2134,10 @@ var handleBundleFailure = (serverBundle, bundleStart, serverEntry) => {
|
|
|
2132
2134
|
};
|
|
2133
2135
|
var resolveJsxDevRuntimeCompatPath = () => {
|
|
2134
2136
|
const candidates = [
|
|
2137
|
+
resolve5(import.meta.dir, "..", "..", "dist", "react", "jsxDevRuntimeCompat.js"),
|
|
2135
2138
|
resolve5(import.meta.dir, "..", "..", "react", "jsxDevRuntimeCompat.js"),
|
|
2136
2139
|
resolve5(import.meta.dir, "..", "..", "react", "jsxDevRuntimeCompat.ts"),
|
|
2140
|
+
resolve5(import.meta.dir, "..", "..", "..", "dist", "react", "jsxDevRuntimeCompat.js"),
|
|
2137
2141
|
resolve5(import.meta.dir, "..", "..", "..", "react", "jsxDevRuntimeCompat.js"),
|
|
2138
2142
|
resolve5(import.meta.dir, "..", "..", "..", "src", "react", "jsxDevRuntimeCompat.ts")
|
|
2139
2143
|
];
|
package/package.json
CHANGED