lucy-cli 1.0.9 → 1.0.11

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/dist/Gulpfile.js CHANGED
@@ -73,7 +73,7 @@ gulp.task('build', gulp.parallel('build-backend', 'build-public', 'preview-templ
73
73
  gulp.task('build-pipeline', gulp.series(cleanSrc(taskOptions), 'set-production', 'fix-wixtypes', 'add-wix-types',
74
74
  // 'test',
75
75
  'build'));
76
- gulp.task('build-prod', gulp.series((done) => checkPages(true, false).then(() => done(), (err) => done(err)), cleanSrc(taskOptions), 'set-production', 'fix-wix', 'build-backend', 'build-public', buildPages(taskOptions), 'copy-files', compileScss(taskOptions), 'gen-docs'));
76
+ gulp.task('build-prod', gulp.series((done) => checkPages(true, false).then(() => done(), (err) => done(err)), cleanSrc(taskOptions), 'set-production', 'fix-wix', 'build-backend', 'build-public', buildPages(taskOptions), 'copy-files', compileScss(taskOptions)));
77
77
  gulp.task('start-dev-env', gulp.parallel(watchAll(taskOptions), 'test', 'start-wix', (done) => checkPages(false, taskOptions.moduleSettings?.force ?? false).then(() => done(), (err) => done(err))));
78
78
  gulp.task('dev', gulp.series(cleanSrc(taskOptions), 'fix-wix', 'build', 'start-dev-env'));
79
79
  async function gulpTaskRunner(task) {
@@ -6,7 +6,6 @@ import { buildPages } from './pages.js';
6
6
  import { copyFiles } from './copy.js';
7
7
  import { previewTemplates } from './templates.js';
8
8
  import { checkTs } from './checks.js';
9
- import shell from 'gulp-shell';
10
9
  let taskOptions;
11
10
  export function watchSCSS() {
12
11
  return gulp.watch([
@@ -19,17 +18,13 @@ export function watchBackend() {
19
18
  '*/backend/**/*.tsx',
20
19
  '!*/backend/**/*.jsw.ts',
21
20
  '!src/**/**',
22
- ], gulp.parallel(checkTs(taskOptions), buildBackend(taskOptions), shell.task([
23
- 'yarn docs',
24
- ])));
21
+ ], gulp.parallel(checkTs(taskOptions), buildBackend(taskOptions)));
25
22
  }
26
23
  export function watchPublic() {
27
24
  return gulp.watch([
28
25
  '*/public/**/*.ts',
29
26
  '*/public/**/*.tsx',
30
- ], gulp.parallel(checkTs(taskOptions), buildPublic(taskOptions), shell.task([
31
- 'yarn docs',
32
- ])));
27
+ ], gulp.parallel(checkTs(taskOptions), buildPublic(taskOptions)));
33
28
  }
34
29
  export function watchPages() {
35
30
  return gulp.watch('typescript/pages/**/*.ts', gulp.parallel(checkTs(taskOptions), buildPages(taskOptions)));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "lucy-cli",
4
- "version": "1.0.9",
4
+ "version": "1.0.11",
5
5
  "description": "Lucy Framework for WIX Studio Editor",
6
6
  "main": ".dist/index.js",
7
7
  "scripts": {
package/src/Gulpfile.ts CHANGED
@@ -165,7 +165,7 @@ gulp.task('build-prod', gulp.series(
165
165
  buildPages(taskOptions),
166
166
  'copy-files',
167
167
  compileScss(taskOptions),
168
- 'gen-docs'
168
+ // 'gen-docs'
169
169
  ));
170
170
 
171
171
 
@@ -28,10 +28,10 @@ export function watchBackend() {
28
28
  ], gulp.parallel(
29
29
  checkTs(taskOptions),
30
30
  buildBackend(taskOptions),
31
- shell.task([
32
- 'yarn docs',
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
- 'yarn docs',
46
- ]))
47
- );
44
+ // shell.task([
45
+ // 'yarn docs',
46
+ // ])
47
+ ));
48
48
  }
49
49
 
50
50
  export function watchPages() {