@madebyseed/seed-cli-tools 1.3.0 → 1.3.1

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.
@@ -23,7 +23,7 @@ var cache = utils.createEventCache();
23
23
  */
24
24
 
25
25
  gulp.task("watch:src", function () {
26
- return gulp.parallel("watch:css", "watch:js", "watch:assets", "watch:svg")();
26
+ return gulp.parallel("watch:css", "watch:js", "watch:vendor-js", "watch:assets", "watch:svg")();
27
27
  });
28
28
  /**
29
29
  * Watches for changes in the `./dist` folder and passes event data to the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madebyseed/seed-cli-tools",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Seed CLI Tools",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -52,5 +52,5 @@
52
52
  "vinyl-paths": "^3.0.1",
53
53
  "yargs": "^17.0.1"
54
54
  },
55
- "gitHead": "e473267c834d1763af02e4e1b20339b628a6dc3c"
55
+ "gitHead": "f0dc909fb1b212491332caeb86a4a971c5405e61"
56
56
  }
@@ -18,7 +18,13 @@ const cache = utils.createEventCache();
18
18
  * @static
19
19
  */
20
20
  gulp.task("watch:src", () => {
21
- return gulp.parallel("watch:css", "watch:js", "watch:assets", "watch:svg")();
21
+ return gulp.parallel(
22
+ "watch:css",
23
+ "watch:js",
24
+ "watch:vendor-js",
25
+ "watch:assets",
26
+ "watch:svg"
27
+ )();
22
28
  });
23
29
 
24
30
  /**