@absolutejs/absolute 0.18.9-beta.2 → 0.18.9
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.
|
@@ -110,7 +110,13 @@
|
|
|
110
110
|
"Bash(kill %1)",
|
|
111
111
|
"Bash(wait)",
|
|
112
112
|
"Bash(xargs kill:*)",
|
|
113
|
-
"Bash(grep -E '\"\"dev\"\"' package.json)"
|
|
113
|
+
"Bash(grep -E '\"\"dev\"\"' package.json)",
|
|
114
|
+
"Bash(rm -rf ~/.bun/install/cache/@absolutejs)",
|
|
115
|
+
"Bash(rm -rf node_modules/@absolutejs)",
|
|
116
|
+
"mcp__playwright__browser_close",
|
|
117
|
+
"mcp__playwright__browser_evaluate",
|
|
118
|
+
"Bash(git check-ignore:*)",
|
|
119
|
+
"Bash(echo \"exit: $?\")"
|
|
114
120
|
]
|
|
115
121
|
}
|
|
116
122
|
}
|
package/dist/build.js
CHANGED
|
@@ -171271,8 +171271,12 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
|
|
|
171271
171271
|
if (reactClientResult && !reactClientResult.success && reactClientLogs.length > 0) {
|
|
171272
171272
|
extractBuildError(reactClientLogs, "react-client", "React client", frameworkNames, isIncremental, throwOnError);
|
|
171273
171273
|
}
|
|
171274
|
-
|
|
171275
|
-
|
|
171274
|
+
const reactClientOutputPaths = reactClientOutputs.map((artifact) => artifact.path);
|
|
171275
|
+
if (vendorPaths && reactClientOutputPaths.length > 0) {
|
|
171276
|
+
await rewriteReactImports(reactClientOutputPaths, vendorPaths);
|
|
171277
|
+
}
|
|
171278
|
+
if (hmr && reactClientOutputPaths.length > 0) {
|
|
171279
|
+
await patchRefreshGlobals(reactClientOutputPaths);
|
|
171276
171280
|
}
|
|
171277
171281
|
const nonReactClientLogs = nonReactClientResult?.logs ?? [];
|
|
171278
171282
|
const nonReactClientOutputs = nonReactClientResult?.outputs ?? [];
|
|
@@ -203674,5 +203678,5 @@ export {
|
|
|
203674
203678
|
build
|
|
203675
203679
|
};
|
|
203676
203680
|
|
|
203677
|
-
//# debugId=
|
|
203681
|
+
//# debugId=8FC2AE7598A9681164756E2164756E21
|
|
203678
203682
|
//# sourceMappingURL=build.js.map
|