@videinfra/static-website-builder 2.0.1 → 2.0.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@videinfra/static-website-builder",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Customizable static site project builder",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -56,6 +56,8 @@ class GulpRolldown extends Transform {
56
56
 
57
57
  // Reload browser
58
58
  browserSync.reload();
59
+ } else if (event.code === 'ERROR') {
60
+ this.emit('error', new PluginError(PLUGIN_NAME, event.error));
59
61
  }
60
62
  });
61
63