lucy-cli 0.9.6 → 0.9.8

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
@@ -63,7 +63,7 @@ gulp.task('add-wix-types', function (done) {
63
63
  });
64
64
  gulp.task('set-production', gulp.parallel(setProdConfig()));
65
65
  gulp.task('start-wix', shell.task([
66
- 'sleep 3; yarn wix:dev',
66
+ 'yarn wix:dev',
67
67
  ]));
68
68
  gulp.task('gen-docs', shell.task([
69
69
  'yarn docs',
@@ -13,13 +13,11 @@
13
13
  "wixPackages": {},
14
14
  "devPackages": {
15
15
  "@eslint/js": "^9.15.0",
16
- "@okee-tech/eslint-plugin-neverthrow": "^1.0.3",
17
16
  "@styled/typescript-styled-plugin": "^1.0.1",
18
17
  "@total-typescript/ts-reset": "^0.6.1",
19
- "@types/jest": "^29.5.14",
20
18
  "@types/node": "^22.9.1",
21
19
  "@types/nodemailer": "^6.4.17",
22
- "@types/react": "^18.3.12",
20
+ "@types/react": "^19.0.0",
23
21
  "@typescript-eslint/eslint-plugin": "^8.15.0",
24
22
  "@typescript-eslint/parser": "^8.15.0",
25
23
  "@typescript-eslint/utils": "^8.15.0",
@@ -36,7 +34,6 @@
36
34
  "eslint-plugin-promise": "^7.2.1",
37
35
  "eslint-plugin-simple-import-sort": "^12.1.1",
38
36
  "prettier": "^3.3.3",
39
- "react": "^18.3.1",
40
37
  "sass": "^1.81.0",
41
38
  "ts-node": "^10.9.2",
42
39
  "tsx": "^4.19.2",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "lucy-cli",
4
- "version": "0.9.6",
4
+ "version": "0.9.8",
5
5
  "description": "Lucy Framework for WIX Studio Editor",
6
6
  "main": ".dist/index.js",
7
7
  "scripts": {
@@ -67,7 +67,6 @@
67
67
  "ts-jest": "^29.1.1",
68
68
  "ts-node": "^10.9.1",
69
69
  "typedoc": "0.26.11",
70
- "typedoc-theme-hierarchy": "5.0.3",
71
70
  "typescript": "^5.6.3",
72
71
  "velo-sync": "^0.0.9"
73
72
  },
package/src/Gulpfile.ts CHANGED
@@ -122,7 +122,7 @@ gulp.task('set-production', gulp.parallel(
122
122
  ));
123
123
 
124
124
  gulp.task('start-wix', shell.task([
125
- 'sleep 3; yarn wix:dev',
125
+ 'yarn wix:dev',
126
126
  ]));
127
127
 
128
128
  gulp.task('gen-docs', shell.task([
package/src/settings.json CHANGED
@@ -13,13 +13,11 @@
13
13
  "wixPackages": {},
14
14
  "devPackages": {
15
15
  "@eslint/js": "^9.15.0",
16
- "@okee-tech/eslint-plugin-neverthrow": "^1.0.3",
17
16
  "@styled/typescript-styled-plugin": "^1.0.1",
18
17
  "@total-typescript/ts-reset": "^0.6.1",
19
- "@types/jest": "^29.5.14",
20
18
  "@types/node": "^22.9.1",
21
19
  "@types/nodemailer": "^6.4.17",
22
- "@types/react": "^18.3.12",
20
+ "@types/react": "^19.0.0",
23
21
  "@typescript-eslint/eslint-plugin": "^8.15.0",
24
22
  "@typescript-eslint/parser": "^8.15.0",
25
23
  "@typescript-eslint/utils": "^8.15.0",
@@ -36,7 +34,6 @@
36
34
  "eslint-plugin-promise": "^7.2.1",
37
35
  "eslint-plugin-simple-import-sort": "^12.1.1",
38
36
  "prettier": "^3.3.3",
39
- "react": "^18.3.1",
40
37
  "sass": "^1.81.0",
41
38
  "ts-node": "^10.9.2",
42
39
  "tsx": "^4.19.2",
@@ -1,38 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "../src",
4
- "rootDir": "../typescript",
5
- "target": "ES2020",
6
- "module": "ESNext",
7
- "moduleResolution": "Node",
8
- "preserveConstEnums": true,
9
- "allowSyntheticDefaultImports": true,
10
- "skipLibCheck": true,
11
- "jsx": "react",
12
- "declaration": true,
13
- "strict": true,
14
- "noImplicitAny": true,
15
- "noImplicitReturns": true,
16
- "noImplicitThis": true,
17
- "strictNullChecks": true,
18
- "strictBindCallApply": true,
19
- "strictFunctionTypes": true,
20
- "strictPropertyInitialization": true,
21
- "experimentalDecorators": true,
22
- "paths": {
23
- "public/*": ["./**/public/*"],
24
- "backend/*": ["./**/backend/*"],
25
- "pages/*": ["./**/pages/*"],
26
- "types/*": ["./**/types/*"]
27
- },
28
- "typeRoots": ["./**/types", "../node_modules/@types"]
29
- },
30
- "exclude": [
31
- "../node_modules",
32
- "../.wix",
33
- "**/*.js",
34
- "node_modules",
35
- "./wix",
36
- "./**/*.test.ts"
37
- ]
38
- }