lucy-cli 1.0.9 → 1.0.10
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 +1 -1
- package/src/Gulpfile.ts +1 -1
- package/src/gulp/watchers.ts +8 -8
package/package.json
CHANGED
package/src/Gulpfile.ts
CHANGED
package/src/gulp/watchers.ts
CHANGED
@@ -28,10 +28,10 @@ export function watchBackend() {
|
|
28
28
|
], gulp.parallel(
|
29
29
|
checkTs(taskOptions),
|
30
30
|
buildBackend(taskOptions),
|
31
|
-
shell.task([
|
32
|
-
|
33
|
-
])
|
34
|
-
);
|
31
|
+
// shell.task([
|
32
|
+
// 'yarn docs',
|
33
|
+
// ])
|
34
|
+
));
|
35
35
|
}
|
36
36
|
|
37
37
|
export function watchPublic() {
|
@@ -41,10 +41,10 @@ export function watchPublic() {
|
|
41
41
|
], gulp.parallel(
|
42
42
|
checkTs(taskOptions),
|
43
43
|
buildPublic(taskOptions),
|
44
|
-
shell.task([
|
45
|
-
|
46
|
-
])
|
47
|
-
);
|
44
|
+
// shell.task([
|
45
|
+
// 'yarn docs',
|
46
|
+
// ])
|
47
|
+
));
|
48
48
|
}
|
49
49
|
|
50
50
|
export function watchPages() {
|