vaderjs 1.3.3-alpha-12 → 1.3.3-alpha-13
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 -0
package/package.json
CHANGED
package/vader.js
CHANGED
|
@@ -655,6 +655,9 @@ async function Build() {
|
|
|
655
655
|
});
|
|
656
656
|
scannedVaderFiles.forEach(async (file) => {
|
|
657
657
|
file = file.replace(/\\/g, '/');
|
|
658
|
+
if(file.includes('index.html') && fs.existsSync(process.cwd() + "/dist/index.html")){
|
|
659
|
+
return
|
|
660
|
+
}
|
|
658
661
|
|
|
659
662
|
let name = file.split( '/node_modules/vaderjs/runtime/')[1]
|
|
660
663
|
let data = await reader(file)
|