@jujulego/jill 2.2.0-alpha.5 → 2.2.0-alpha.7

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.
Files changed (47) hide show
  1. package/dist/508.js +2 -0
  2. package/dist/508.js.map +1 -0
  3. package/dist/630.js +2 -0
  4. package/dist/630.js.map +1 -0
  5. package/dist/828.js +2 -0
  6. package/dist/828.js.map +1 -0
  7. package/dist/833.js +9 -0
  8. package/dist/833.js.map +1 -0
  9. package/dist/839.js +2 -0
  10. package/dist/839.js.map +1 -0
  11. package/dist/commands/each.d.ts +2 -2
  12. package/dist/commands/exec.d.ts +16 -0
  13. package/dist/commands/group.d.ts +1 -1
  14. package/dist/commands/run.d.ts +4 -1
  15. package/dist/commons/context.service.d.ts +23 -0
  16. package/dist/commons/logger/console.formatter.d.ts +2 -0
  17. package/dist/commons/logger/log.tag.d.ts +1 -0
  18. package/dist/commons/logger.service.d.ts +18 -4
  19. package/dist/commons/spinner.service.d.ts +4 -3
  20. package/dist/index.d.ts +8 -1
  21. package/dist/index.js +1 -1
  22. package/dist/index.js.map +1 -1
  23. package/dist/jill.application.d.ts +19 -0
  24. package/dist/main.js +1 -1
  25. package/dist/main.js.map +1 -1
  26. package/dist/middlewares/load-project.d.ts +10 -5
  27. package/dist/middlewares/load-workspace.d.ts +7 -4
  28. package/dist/modules/command.d.ts +2 -1
  29. package/dist/modules/plugin-loader.service.d.ts +2 -1
  30. package/dist/modules/task-command.d.ts +1 -1
  31. package/dist/project/project.d.ts +4 -5
  32. package/dist/project/project.repository.d.ts +15 -0
  33. package/dist/project/types.d.ts +1 -0
  34. package/dist/project/workspace.d.ts +8 -10
  35. package/dist/tasks/command-task.d.ts +15 -0
  36. package/dist/tasks/script-task.d.ts +20 -0
  37. package/dist/tsconfig.build.tsbuildinfo +1 -1
  38. package/dist/utils/events.d.ts +3 -0
  39. package/dist/utils/exit.d.ts +4 -0
  40. package/dist/utils/string.d.ts +1 -0
  41. package/package.json +25 -21
  42. package/dist/322.js +0 -9
  43. package/dist/322.js.map +0 -1
  44. package/dist/57.js +0 -2
  45. package/dist/57.js.map +0 -1
  46. /package/dist/{322.js.LICENSE.txt → 833.js.LICENSE.txt} +0 -0
  47. /package/dist/{project/constants.d.ts → constants.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jujulego/jill",
3
- "version": "2.2.0-alpha.5",
3
+ "version": "2.2.0-alpha.7",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,44 +21,48 @@
21
21
  "stats": "webpack --config webpack.stats.ts",
22
22
  "watch": "webpack --watch",
23
23
  "test": "jest",
24
- "test:e2e": "jest -c jest-e2e.config.ts"
24
+ "e2e": "jest -c jest-e2e.config.ts",
25
+ "e2e:npm": "cross-env USE_PACKAGE_MANAGER=npm yarn run e2e",
26
+ "e2e:yarn": "cross-env USE_PACKAGE_MANAGER=yarn yarn run e2e"
25
27
  },
26
28
  "engines": {
27
29
  "node": "^16.x || ^18.x"
28
30
  },
29
31
  "devDependencies": {
30
32
  "@jujulego/2d-maths": "1.6.0",
31
- "@jujulego/event-tree": "1.1.1",
32
- "@jujulego/tasks": "1.3.0",
33
- "@jujulego/utils": "1.1.0",
34
- "@swc/core": "1.3.35",
33
+ "@jujulego/event-tree": "2.1.1",
34
+ "@jujulego/tasks": "1.5.0",
35
+ "@jujulego/utils": "1.2.0",
36
+ "@microsoft/eslint-formatter-sarif": "3.0.0",
37
+ "@swc/core": "1.3.39",
35
38
  "@swc/jest": "0.2.24",
36
- "@types/jest": "29.4.0",
39
+ "@types/jest": "29.5.0",
37
40
  "@types/moo": "0.5.5",
38
- "@types/node": "16.18.12",
41
+ "@types/node": "16.18.21",
39
42
  "@types/normalize-package-data": "2.4.1",
40
- "@types/react": "17.0.53",
43
+ "@types/react": "17.0.54",
41
44
  "@types/semver": "7.3.13",
42
45
  "@types/webpack-bundle-analyzer": "4.6.0",
43
- "@types/yargs": "17.0.22",
44
- "@typescript-eslint/eslint-plugin": "5.52.0",
45
- "@typescript-eslint/parser": "5.52.0",
46
+ "@types/yargs": "17.0.24",
47
+ "@typescript-eslint/eslint-plugin": "5.57.0",
48
+ "@typescript-eslint/parser": "5.57.0",
46
49
  "ajv": "8.12.0",
47
50
  "ansi-styles": "6.2.1",
48
51
  "chalk": "5.2.0",
49
- "cosmiconfig": "8.0.0",
50
- "eslint": "8.34.0",
52
+ "cosmiconfig": "8.1.3",
53
+ "cross-env": "7.0.3",
54
+ "eslint": "8.36.0",
51
55
  "eslint-plugin-jest": "27.2.1",
52
56
  "eslint-plugin-react": "7.32.2",
53
57
  "eslint-plugin-react-hooks": "4.6.0",
54
- "eslint-plugin-workspaces": "0.7.0",
55
- "fork-ts-checker-webpack-plugin": "7.3.0",
58
+ "eslint-plugin-workspaces": "0.8.0",
59
+ "fork-ts-checker-webpack-plugin": "8.0.0",
56
60
  "ink": "3.2.0",
57
61
  "ink-spinner": "4.0.3",
58
62
  "ink-testing-library": "2.1.0",
59
63
  "inversify": "6.0.1",
60
64
  "inversify-inject-decorators": "3.1.0",
61
- "jest": "29.4.3",
65
+ "jest": "29.5.0",
62
66
  "log-symbols": "5.1.0",
63
67
  "memfs": "3.4.13",
64
68
  "moo": "0.5.2",
@@ -68,19 +72,19 @@
68
72
  "reflect-metadata": "0.1.13",
69
73
  "semver": "7.3.8",
70
74
  "shx": "0.3.4",
71
- "slugify": "1.6.5",
75
+ "slugify": "1.6.6",
72
76
  "supports-color": "9.3.1",
73
77
  "swc-loader": "0.2.3",
74
78
  "tiny-glob": "0.2.9",
75
79
  "ts-node": "10.9.1",
76
80
  "typescript": "4.9.5",
77
- "webpack": "5.75.0",
81
+ "webpack": "5.76.3",
78
82
  "webpack-bundle-analyzer": "4.8.0",
79
83
  "webpack-cli": "5.0.1",
80
84
  "webpack-merge": "5.8.0",
81
85
  "winston": "3.8.2",
82
86
  "winston-transport": "4.5.0",
83
- "yargs": "17.7.0"
87
+ "yargs": "17.7.1"
84
88
  },
85
- "packageManager": "yarn@3.4.1"
89
+ "packageManager": "yarn@3.5.0"
86
90
  }