@madebyseed/seed-cli-tools 1.3.0 → 1.3.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/lib/gulpfile.js CHANGED
@@ -7,8 +7,8 @@ require("require-directory")(module, "./tasks");
7
7
  /**
8
8
  * Does a full clean/rebuild of your theme
9
9
  *
10
- * @function watch
11
- * @memberof slate-cli.tasks.watch
10
+ * @function build
11
+ * @memberof slate-cli.tasks.build
12
12
  * @static
13
13
  */
14
14
 
@@ -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.2",
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": "664511c9ff5705270fb7146e07f92a4c51b9508b"
56
56
  }
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ store: 'temp.myshopify.com',
3
+ themes: {
4
+ development: null,
5
+ production: null
6
+ }, // COMMA REQUIRED AFTER STATIC PART OF CONFIG
7
+
8
+ /** ============================================================== */
9
+ /** DYNAMIC RUNTIME CONFIG DO NOT EDIT ANY CONTENT BELOW THIS LINE */
10
+ /** === delimiter */
11
+ }
package/src/gulpfile.js CHANGED
@@ -6,8 +6,8 @@ require("require-directory")(module, "./tasks");
6
6
  /**
7
7
  * Does a full clean/rebuild of your theme
8
8
  *
9
- * @function watch
10
- * @memberof slate-cli.tasks.watch
9
+ * @function build
10
+ * @memberof slate-cli.tasks.build
11
11
  * @static
12
12
  */
13
13
  gulp.task(
@@ -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
  /**