@modern-js/monorepo-tools 1.3.3-beta.3 → 1.4.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +62 -0
  2. package/dist/js/modern/cli/build-watch.js +3 -3
  3. package/dist/js/modern/cli/build.js +2 -2
  4. package/dist/js/modern/cli/clear.js +2 -2
  5. package/dist/js/modern/cli/deploy.js +2 -2
  6. package/dist/js/modern/cli/install.js +2 -2
  7. package/dist/js/modern/commands/build-watch.js +2 -4
  8. package/dist/js/modern/commands/build.js +2 -4
  9. package/dist/js/modern/commands/clear.js +3 -5
  10. package/dist/js/modern/commands/deploy.js +5 -6
  11. package/dist/js/modern/commands/install.js +2 -4
  12. package/dist/js/modern/dag/utils.js +0 -1
  13. package/dist/js/modern/features/build/index.js +2 -3
  14. package/dist/js/modern/features/deploy/index.js +3 -8
  15. package/dist/js/modern/features/dev/create-task.js +1 -2
  16. package/dist/js/modern/features/dev/index.js +1 -2
  17. package/dist/js/modern/features/install/index.js +3 -7
  18. package/dist/js/modern/hooks/index.js +2 -5
  19. package/dist/js/modern/index.js +22 -22
  20. package/dist/js/modern/log/multi-tasks-log.js +1 -1
  21. package/dist/js/modern/log/time.js +1 -1
  22. package/dist/js/modern/projects/get-projects-by-workspace-file.js +3 -6
  23. package/dist/js/modern/utils/install.js +1 -2
  24. package/dist/js/node/cli/build-watch.js +3 -3
  25. package/dist/js/node/cli/build.js +2 -2
  26. package/dist/js/node/cli/clear.js +2 -2
  27. package/dist/js/node/cli/deploy.js +2 -2
  28. package/dist/js/node/cli/install.js +2 -2
  29. package/dist/js/node/commands/build-watch.js +2 -5
  30. package/dist/js/node/commands/build.js +2 -5
  31. package/dist/js/node/commands/clear.js +3 -6
  32. package/dist/js/node/commands/deploy.js +5 -7
  33. package/dist/js/node/commands/install.js +2 -5
  34. package/dist/js/node/dag/utils.js +0 -1
  35. package/dist/js/node/features/build/index.js +5 -7
  36. package/dist/js/node/features/deploy/index.js +6 -16
  37. package/dist/js/node/features/dev/create-task.js +2 -6
  38. package/dist/js/node/features/dev/index.js +3 -5
  39. package/dist/js/node/features/install/index.js +4 -11
  40. package/dist/js/node/hooks/index.js +4 -10
  41. package/dist/js/node/index.js +25 -29
  42. package/dist/js/node/log/multi-tasks-log.js +4 -4
  43. package/dist/js/node/log/time.js +2 -2
  44. package/dist/js/node/projects/get-projects-by-workspace-file.js +4 -9
  45. package/dist/js/node/utils/install.js +2 -6
  46. package/dist/types/cli/build-watch.d.ts +3 -2
  47. package/dist/types/cli/build.d.ts +3 -2
  48. package/dist/types/cli/clear.d.ts +3 -2
  49. package/dist/types/cli/deploy.d.ts +3 -2
  50. package/dist/types/cli/install.d.ts +3 -2
  51. package/dist/types/cli/new.d.ts +1 -1
  52. package/dist/types/commands/build-watch.d.ts +2 -1
  53. package/dist/types/commands/build.d.ts +2 -1
  54. package/dist/types/commands/clear.d.ts +2 -1
  55. package/dist/types/commands/deploy.d.ts +2 -1
  56. package/dist/types/commands/install.d.ts +2 -1
  57. package/dist/types/hooks/index.d.ts +7 -1
  58. package/dist/types/index.d.ts +2 -3
  59. package/dist/types/log/time.d.ts +2 -2
  60. package/jest.config.js +0 -1
  61. package/package.json +9 -21
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.3.3-beta.3",
14
+ "version": "1.4.2",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -35,40 +35,29 @@
35
35
  "modern": "./bin/modern.js"
36
36
  },
37
37
  "dependencies": {
38
+ "@modern-js/core": "^1.7.0",
38
39
  "@babel/runtime": "^7",
39
40
  "@modern-js/i18n-cli-language-detector": "^1.2.1",
40
- "@modern-js/new-action": "^1.3.2",
41
- "@modern-js/plugin": "^1.2.1",
42
- "@modern-js/plugin-changeset": "^1.2.2",
43
- "@modern-js/plugin-i18n": "^1.2.1",
44
- "@modern-js/utils": "^1.3.2",
41
+ "@modern-js/new-action": "^1.3.5",
42
+ "@modern-js/plugin": "^1.3.2",
43
+ "@modern-js/plugin-changeset": "^1.2.4",
44
+ "@modern-js/plugin-i18n": "^1.2.3",
45
+ "@modern-js/utils": "^1.4.0",
45
46
  "@rushstack/node-core-library": "^3.39.1",
46
47
  "@rushstack/package-deps-hash": "^3.0.54",
47
48
  "anymatch": "^3.1.2",
48
- "chalk": "^4.1.1",
49
- "chokidar": "^3.5.2",
50
- "commander": "^8.1.0",
51
49
  "globby": "^11.0.0",
52
- "js-yaml": "^4.1.0",
53
50
  "md5": "^2.3.0",
54
- "p-map": "^4.0.0",
55
- "signale": "^1.4.0"
56
- },
57
- "peerDependencies": {
58
- "@modern-js/core": "^1.4.3"
51
+ "p-map": "^4.0.0"
59
52
  },
60
53
  "devDependencies": {
61
- "@modern-js/core": "^1.4.3",
62
54
  "@scripts/build": "0.0.0",
63
55
  "@scripts/jest-config": "0.0.0",
64
56
  "@types/jest": "^26",
65
- "@types/js-yaml": "^4.0.2",
66
57
  "@types/md5": "^2.3.1",
67
58
  "@types/node": "^14",
68
59
  "@types/react": "^17",
69
60
  "@types/react-dom": "^17",
70
- "@types/signale": "^1.4.2",
71
- "execa": "^5.1.1",
72
61
  "jest": "^27",
73
62
  "typescript": "^4"
74
63
  },
@@ -80,8 +69,7 @@
80
69
  },
81
70
  "publishConfig": {
82
71
  "registry": "https://registry.npmjs.org/",
83
- "access": "public",
84
- "types": "./dist/types/index.d.ts"
72
+ "access": "public"
85
73
  },
86
74
  "scripts": {
87
75
  "new": "modern new",