vaderjs 1.3.3-alpha-79 → 1.3.3-alpha-81
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/package.json +1 -1
- package/vader.js +3 -2
package/package.json
CHANGED
package/vader.js
CHANGED
|
@@ -882,8 +882,9 @@ async function Build() {
|
|
|
882
882
|
await writer(process.cwd() + "/dist/" + file, data);
|
|
883
883
|
});
|
|
884
884
|
|
|
885
|
-
}else{
|
|
886
|
-
|
|
885
|
+
}else if(process.env.isCloudflare){
|
|
886
|
+
let html = scannedFiles.filter((e) => e.includes('index.html'))[0]
|
|
887
|
+
console.log(html)
|
|
887
888
|
}
|
|
888
889
|
|
|
889
890
|
globalThis.isBuilding = false
|