@modern-js/monorepo-tools 2.5.0 → 2.7.0
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/CHANGELOG.md +44 -0
- package/dist/cjs/cli/{build-watch.js → buildWatch.js} +3 -3
- package/dist/cjs/cli/index.js +1 -1
- package/dist/cjs/commands/build.js +3 -2
- package/dist/cjs/commands/{build-watch.js → buildWatch.js} +5 -5
- package/dist/cjs/commands/clear.js +2 -2
- package/dist/cjs/commands/deploy.js +2 -2
- package/dist/cjs/commands/index.js +1 -1
- package/dist/cjs/commands/install.js +2 -2
- package/dist/cjs/dag/create.js +4 -1
- package/dist/cjs/dag/{edge-manager.js → edgeManager.js} +3 -3
- package/dist/cjs/dag/operator.js +40 -3
- package/dist/cjs/dag/task.js +4 -0
- package/dist/cjs/dag/utils.js +2 -2
- package/dist/cjs/features/build/index.js +10 -6
- package/dist/cjs/features/clear/index.js +4 -0
- package/dist/cjs/features/deploy/index.js +5 -0
- package/dist/cjs/features/dev/{create-task.js → createTask.js} +7 -3
- package/dist/cjs/features/dev/index.js +11 -7
- package/dist/cjs/features/dev/{watch-projects-state.js → watchProjectsState.js} +7 -3
- package/dist/cjs/features/install/index.js +4 -0
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/log/{multi-tasks-log.js → multiTasksLog.js} +3 -3
- package/dist/cjs/parse-config/index.js +9 -1
- package/dist/cjs/parse-config/monorepo.js +4 -0
- package/dist/cjs/projects/{check-project-change.js → checkProjectChange.js} +7 -3
- package/dist/cjs/projects/{clear-memory-files.js → clearMemoryFiles.js} +10 -6
- package/dist/cjs/projects/{get-projects.js → getProjects.js} +12 -9
- package/dist/cjs/projects/{get-projects-by-packages-config.js → getProjectsByPackagesConfig.js} +9 -3
- package/dist/cjs/projects/{get-projects-by-workspace-file.js → getProjectsByWorkspaceFile.js} +10 -6
- package/dist/cjs/utils/install.js +4 -0
- package/dist/esm/cli/index.js +1 -1
- package/dist/esm/commands/build.js +2 -1
- package/dist/esm/commands/{build-watch.js → buildWatch.js} +1 -1
- package/dist/esm/commands/clear.js +1 -1
- package/dist/esm/commands/deploy.js +1 -1
- package/dist/esm/commands/index.js +1 -1
- package/dist/esm/commands/install.js +1 -1
- package/dist/esm/dag/create.js +4 -1
- package/dist/esm/dag/operator.js +34 -1
- package/dist/esm/dag/utils.js +1 -1
- package/dist/esm/features/build/index.js +2 -2
- package/dist/esm/features/deploy/index.js +1 -0
- package/dist/esm/features/dev/index.js +3 -3
- package/dist/esm/parse-config/index.js +5 -1
- package/dist/esm/projects/{clear-memory-files.js → clearMemoryFiles.js} +1 -1
- package/dist/esm/projects/{get-projects.js → getProjects.js} +5 -2
- package/dist/esm/projects/{get-projects-by-packages-config.js → getProjectsByPackagesConfig.js} +2 -0
- package/dist/esm/projects/{get-projects-by-workspace-file.js → getProjectsByWorkspaceFile.js} +1 -1
- package/dist/types/cli/index.d.ts +1 -1
- package/dist/types/commands/index.d.ts +1 -1
- package/dist/types/dag/create.d.ts +1 -1
- package/dist/types/dag/{edge-manager.d.ts → edgeManager.d.ts} +1 -1
- package/dist/types/dag/index.d.ts +1 -1
- package/dist/types/dag/operator.d.ts +1 -1
- package/dist/types/dag/utils.d.ts +1 -1
- package/dist/types/features/clear/index.d.ts +1 -1
- package/dist/types/features/dev/cmds.d.ts +1 -1
- package/dist/types/features/dev/{create-task.d.ts → createTask.d.ts} +2 -2
- package/dist/types/features/dev/index.d.ts +1 -1
- package/dist/types/features/dev/{watch-projects-state.d.ts → watchProjectsState.d.ts} +1 -1
- package/dist/types/package/index.d.ts +1 -1
- package/dist/types/projects/{check-project-change.d.ts → checkProjectChange.d.ts} +1 -1
- package/dist/types/projects/{clear-memory-files.d.ts → clearMemoryFiles.d.ts} +1 -1
- package/package.json +11 -11
- /package/dist/esm/cli/{build-watch.js → buildWatch.js} +0 -0
- /package/dist/esm/dag/{edge-manager.js → edgeManager.js} +0 -0
- /package/dist/esm/features/dev/{create-task.js → createTask.js} +0 -0
- /package/dist/esm/features/dev/{watch-projects-state.js → watchProjectsState.js} +0 -0
- /package/dist/esm/log/{multi-tasks-log.js → multiTasksLog.js} +0 -0
- /package/dist/esm/projects/{check-project-change.js → checkProjectChange.js} +0 -0
- /package/dist/types/cli/{build-watch.d.ts → buildWatch.d.ts} +0 -0
- /package/dist/types/commands/{build-watch.d.ts → buildWatch.d.ts} +0 -0
- /package/dist/types/log/{multi-tasks-log.d.ts → multiTasksLog.d.ts} +0 -0
- /package/dist/types/projects/{get-projects.d.ts → getProjects.d.ts} +0 -0
- /package/dist/types/projects/{get-projects-by-packages-config.d.ts → getProjectsByPackagesConfig.d.ts} +0 -0
- /package/dist/types/projects/{get-projects-by-workspace-file.d.ts → getProjectsByWorkspaceFile.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.
|
|
14
|
+
"version": "2.7.0",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/cjs/index.js",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"anymatch": "^3.1.2",
|
|
40
40
|
"md5": "^2.3.0",
|
|
41
41
|
"p-map": "^4.0.0",
|
|
42
|
-
"@modern-js/core": "2.
|
|
43
|
-
"@modern-js/new-action": "2.
|
|
44
|
-
"@modern-js/upgrade": "2.
|
|
45
|
-
"@modern-js/plugin": "2.
|
|
46
|
-
"@modern-js/plugin-changeset": "2.
|
|
47
|
-
"@modern-js/plugin-i18n": "2.
|
|
48
|
-
"@modern-js/plugin-lint": "2.
|
|
49
|
-
"@modern-js/utils": "2.
|
|
42
|
+
"@modern-js/core": "2.7.0",
|
|
43
|
+
"@modern-js/new-action": "2.7.0",
|
|
44
|
+
"@modern-js/upgrade": "2.7.0",
|
|
45
|
+
"@modern-js/plugin": "2.7.0",
|
|
46
|
+
"@modern-js/plugin-changeset": "2.7.0",
|
|
47
|
+
"@modern-js/plugin-i18n": "2.7.0",
|
|
48
|
+
"@modern-js/plugin-lint": "2.7.0",
|
|
49
|
+
"@modern-js/utils": "2.7.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/jest": "^27",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"@types/node": "^14",
|
|
55
55
|
"jest": "^27",
|
|
56
56
|
"typescript": "^4",
|
|
57
|
-
"@scripts/build": "2.
|
|
58
|
-
"@scripts/jest-config": "2.
|
|
57
|
+
"@scripts/build": "2.7.0",
|
|
58
|
+
"@scripts/jest-config": "2.7.0"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"publishConfig": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/types/projects/{get-projects-by-workspace-file.d.ts → getProjectsByWorkspaceFile.d.ts}
RENAMED
|
File without changes
|