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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vader.js +2 -4
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "vaderjs",
3
3
  "description": "A Reactive library aimed to helping you build reactive applications inspired by react.js",
4
4
  "module": "vader.js",
5
- "version": "1.3.3-alpha-83",
5
+ "version": "1.3.3-alpha-84",
6
6
  "bin": {
7
7
  "vader": "./vader.js"
8
8
  },
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,