@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 +2 -2
- package/lib/tasks/watchers.js +1 -1
- package/package.json +2 -2
- package/seed.config.example.js +11 -0
- package/src/gulpfile.js +2 -2
- package/src/tasks/watchers.js +7 -1
package/lib/gulpfile.js
CHANGED
package/lib/tasks/watchers.js
CHANGED
|
@@ -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.
|
|
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": "
|
|
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
package/src/tasks/watchers.js
CHANGED
|
@@ -18,7 +18,13 @@ const cache = utils.createEventCache();
|
|
|
18
18
|
* @static
|
|
19
19
|
*/
|
|
20
20
|
gulp.task("watch:src", () => {
|
|
21
|
-
return gulp.parallel(
|
|
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
|
/**
|