forgecss 0.1.3 → 0.1.4

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/cli.js +5 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -52,7 +52,11 @@ async function runForgeCSS(lookAtPath = null) {
52
52
  }
53
53
  }
54
54
  }
55
- ForgeCSS(config).parse(lookAtPath);
55
+ ForgeCSS(config).parse(lookAtPath).then(() => {
56
+ if (options.verbose) {
57
+ console.log(`forgecss: CSS generation at ${config.output} completed.`);
58
+ }
59
+ });
56
60
  }
57
61
 
58
62
  runForgeCSS();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgecss",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "ForgeCSS turns strings into fully generated responsive CSS using a custom DSL.",
6
6
  "author": "Krasimir Tsonev",