vaderjs 1.3.3-alpha-160 → 1.3.3-alpha-161

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 +1 -0
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-160",
5
+ "version": "1.3.3-alpha-161",
6
6
  "bin": {
7
7
  "vader": "./vader.js"
8
8
  },
package/vader.js CHANGED
@@ -1007,6 +1007,7 @@ async function Build() {
1007
1007
 
1008
1008
 
1009
1009
  let data = await fs.readFileSync(origin, "utf8");
1010
+ console.log(`Compiling ${fileName}...`)
1010
1011
  data = Compiler(data, origin);
1011
1012
 
1012
1013