vaderjs 1.3.3-alpha-83 → 1.3.3-alpha-84
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 +2 -4
package/package.json
CHANGED
package/vader.js
CHANGED
|
@@ -643,8 +643,7 @@ function Compiler(func, file) {
|
|
|
643
643
|
path = '/src/' + path
|
|
644
644
|
} else if (path.startsWith('src') || path.startsWith('public')) {
|
|
645
645
|
path = '/' + path
|
|
646
|
-
}
|
|
647
|
-
console.log(path)
|
|
646
|
+
}
|
|
648
647
|
path = path.replaceAll('.jsx', '.js');
|
|
649
648
|
|
|
650
649
|
|
|
@@ -874,8 +873,7 @@ async function Build() {
|
|
|
874
873
|
|
|
875
874
|
scannedFiles.forEach(async (file) => {
|
|
876
875
|
file = file.split(process.cwd() + '/runtime/')[1]
|
|
877
|
-
|
|
878
|
-
console.log(file)
|
|
876
|
+
|
|
879
877
|
let objCase = {
|
|
880
878
|
...file == "app.js" ? { exit: true } : null,
|
|
881
879
|
...file.includes("index.html") && fs.existsSync(process.cwd() + "/runtime/" + file) ? { exit: true } : null,
|