innetjs 2.0.5 → 2.0.6

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/bin/innet CHANGED
@@ -410,7 +410,7 @@ class InnetJS {
410
410
  exclude: stringExcludeDom,
411
411
  }),
412
412
  this.createClient(key, cert, pkg),
413
- livereload(Object.assign({ watch: this.devBuildFolder, verbose: false }, (key && cert ? { https: { key, cert } } : {})))
413
+ livereload(Object.assign({ exts: ['html', 'css', 'js', 'png', 'svg', 'webp', 'gif', 'jpg', 'json'], watch: [this.devBuildFolder, this.publicFolder], verbose: false }, (key && cert ? { https: { key, cert } } : {})))
414
414
  ];
415
415
  }
416
416
  const watcher = rollup__default["default"].watch(options);
@@ -601,7 +601,7 @@ class InnetJS {
601
601
  }
602
602
  }
603
603
 
604
- var version = "2.0.5";
604
+ var version = "2.0.6";
605
605
 
606
606
  require('dotenv').config();
607
607
  const innetJS = new InnetJS();
package/index.es6.js CHANGED
@@ -381,7 +381,7 @@ class InnetJS {
381
381
  exclude: stringExcludeDom,
382
382
  }),
383
383
  this.createClient(key, cert, pkg),
384
- livereload(Object.assign({ watch: this.devBuildFolder, verbose: false }, (key && cert ? { https: { key, cert } } : {})))
384
+ livereload(Object.assign({ exts: ['html', 'css', 'js', 'png', 'svg', 'webp', 'gif', 'jpg', 'json'], watch: [this.devBuildFolder, this.publicFolder], verbose: false }, (key && cert ? { https: { key, cert } } : {})))
385
385
  ];
386
386
  }
387
387
  const watcher = rollup.watch(options);
package/index.js CHANGED
@@ -408,7 +408,7 @@ class InnetJS {
408
408
  exclude: stringExcludeDom,
409
409
  }),
410
410
  this.createClient(key, cert, pkg),
411
- livereload(Object.assign({ watch: this.devBuildFolder, verbose: false }, (key && cert ? { https: { key, cert } } : {})))
411
+ livereload(Object.assign({ exts: ['html', 'css', 'js', 'png', 'svg', 'webp', 'gif', 'jpg', 'json'], watch: [this.devBuildFolder, this.publicFolder], verbose: false }, (key && cert ? { https: { key, cert } } : {})))
412
412
  ];
413
413
  }
414
414
  const watcher = rollup__default["default"].watch(options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",