@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/build.js
CHANGED
|
@@ -55,6 +55,9 @@ var createFreshReadPlugin = (changedFiles) => {
|
|
|
55
55
|
setup(build) {
|
|
56
56
|
build.onLoad({ filter: /\.(tsx?|jsx?)$/ }, (args) => {
|
|
57
57
|
const normalized = args.path.replace(/\\/g, "/");
|
|
58
|
+
if (changed.has(normalized)) {
|
|
59
|
+
console.log(`[fresh-read] HIT: ${normalized.split("/").slice(-2).join("/")}`);
|
|
60
|
+
}
|
|
58
61
|
if (!changed.has(normalized))
|
|
59
62
|
return;
|
|
60
63
|
const contents = readFileSync(args.path, "utf-8");
|
|
@@ -204902,5 +204905,5 @@ export {
|
|
|
204902
204905
|
build
|
|
204903
204906
|
};
|
|
204904
204907
|
|
|
204905
|
-
//# debugId=
|
|
204908
|
+
//# debugId=F756F272ACFCCA5464756E2164756E21
|
|
204906
204909
|
//# sourceMappingURL=build.js.map
|