@absolutejs/absolute 0.19.0-beta.79 → 0.19.0-beta.80
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/build.js +4 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -142,6 +142,9 @@ var createFreshReadPlugin = (changedFiles) => {
|
|
|
142
142
|
setup(build2) {
|
|
143
143
|
build2.onLoad({ filter: /\.(tsx?|jsx?)$/ }, (args) => {
|
|
144
144
|
const normalized = args.path.replace(/\\/g, "/");
|
|
145
|
+
if (changed.has(normalized)) {
|
|
146
|
+
console.log(`[fresh-read] HIT: ${normalized.split("/").slice(-2).join("/")}`);
|
|
147
|
+
}
|
|
145
148
|
if (!changed.has(normalized))
|
|
146
149
|
return;
|
|
147
150
|
const contents = readFileSync(args.path, "utf-8");
|
|
@@ -205307,5 +205310,5 @@ export {
|
|
|
205307
205310
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205308
205311
|
};
|
|
205309
205312
|
|
|
205310
|
-
//# debugId=
|
|
205313
|
+
//# debugId=57E96F84675CA76B64756E2164756E21
|
|
205311
205314
|
//# sourceMappingURL=index.js.map
|