@modern-js/monorepo-tools 1.4.0 → 1.4.3
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/.eslintrc.js +8 -0
- package/CHANGELOG.md +68 -0
- package/dist/js/modern/cli/build-watch.js +3 -3
- package/dist/js/modern/cli/build.js +2 -2
- package/dist/js/modern/cli/clear.js +2 -2
- package/dist/js/modern/cli/deploy.js +2 -2
- package/dist/js/modern/cli/install.js +2 -2
- package/dist/js/modern/commands/build-watch.js +2 -4
- package/dist/js/modern/commands/build.js +2 -4
- package/dist/js/modern/commands/clear.js +3 -5
- package/dist/js/modern/commands/deploy.js +5 -6
- package/dist/js/modern/commands/install.js +2 -4
- package/dist/js/modern/dag/utils.js +0 -1
- package/dist/js/modern/features/build/index.js +2 -3
- package/dist/js/modern/features/deploy/index.js +3 -8
- package/dist/js/modern/features/dev/create-task.js +1 -2
- package/dist/js/modern/features/dev/index.js +1 -2
- package/dist/js/modern/features/install/index.js +3 -7
- package/dist/js/modern/hooks/index.js +2 -5
- package/dist/js/modern/index.js +22 -22
- package/dist/js/modern/log/multi-tasks-log.js +1 -1
- package/dist/js/modern/log/time.js +1 -1
- package/dist/js/modern/projects/get-projects-by-workspace-file.js +13 -6
- package/dist/js/modern/utils/install.js +1 -2
- package/dist/js/node/cli/build-watch.js +3 -3
- package/dist/js/node/cli/build.js +2 -2
- package/dist/js/node/cli/clear.js +2 -2
- package/dist/js/node/cli/deploy.js +2 -2
- package/dist/js/node/cli/install.js +2 -2
- package/dist/js/node/commands/build-watch.js +2 -5
- package/dist/js/node/commands/build.js +2 -5
- package/dist/js/node/commands/clear.js +3 -6
- package/dist/js/node/commands/deploy.js +5 -7
- package/dist/js/node/commands/install.js +2 -5
- package/dist/js/node/dag/utils.js +0 -1
- package/dist/js/node/features/build/index.js +5 -7
- package/dist/js/node/features/deploy/index.js +6 -16
- package/dist/js/node/features/dev/create-task.js +2 -6
- package/dist/js/node/features/dev/index.js +3 -5
- package/dist/js/node/features/install/index.js +4 -11
- package/dist/js/node/hooks/index.js +4 -10
- package/dist/js/node/index.js +25 -29
- package/dist/js/node/log/multi-tasks-log.js +4 -4
- package/dist/js/node/log/time.js +2 -2
- package/dist/js/node/projects/get-projects-by-workspace-file.js +16 -9
- package/dist/js/node/utils/install.js +2 -6
- package/dist/types/cli/build-watch.d.ts +3 -2
- package/dist/types/cli/build.d.ts +3 -2
- package/dist/types/cli/clear.d.ts +3 -2
- package/dist/types/cli/deploy.d.ts +3 -2
- package/dist/types/cli/install.d.ts +3 -2
- package/dist/types/cli/new.d.ts +1 -1
- package/dist/types/commands/build-watch.d.ts +2 -1
- package/dist/types/commands/build.d.ts +2 -1
- package/dist/types/commands/clear.d.ts +2 -1
- package/dist/types/commands/deploy.d.ts +2 -1
- package/dist/types/commands/install.d.ts +2 -1
- package/dist/types/hooks/index.d.ts +7 -1
- package/dist/types/index.d.ts +2 -3
- package/dist/types/log/time.d.ts +2 -2
- package/jest.config.js +0 -1
- package/package.json +9 -17
- package/tests/index.test.ts +0 -7
- package/tests/tsconfig.json +0 -13
package/jest.config.js
CHANGED
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.4.
|
|
14
|
+
"version": "1.4.3",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -35,37 +35,29 @@
|
|
|
35
35
|
"modern": "./bin/modern.js"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@modern-js/core": "^1.
|
|
38
|
+
"@modern-js/core": "^1.8.0",
|
|
39
39
|
"@babel/runtime": "^7",
|
|
40
|
-
"@modern-js/i18n-cli-language-detector": "^1.2.
|
|
41
|
-
"@modern-js/new-action": "^1.3.
|
|
42
|
-
"@modern-js/plugin": "^1.
|
|
43
|
-
"@modern-js/plugin-changeset": "^1.2.
|
|
44
|
-
"@modern-js/plugin-i18n": "^1.2.
|
|
45
|
-
"@modern-js/utils": "^1.
|
|
40
|
+
"@modern-js/i18n-cli-language-detector": "^1.2.2",
|
|
41
|
+
"@modern-js/new-action": "^1.3.6",
|
|
42
|
+
"@modern-js/plugin": "^1.3.3",
|
|
43
|
+
"@modern-js/plugin-changeset": "^1.2.5",
|
|
44
|
+
"@modern-js/plugin-i18n": "^1.2.4",
|
|
45
|
+
"@modern-js/utils": "^1.5.0",
|
|
46
46
|
"@rushstack/node-core-library": "^3.39.1",
|
|
47
47
|
"@rushstack/package-deps-hash": "^3.0.54",
|
|
48
48
|
"anymatch": "^3.1.2",
|
|
49
|
-
"chalk": "^4.1.1",
|
|
50
|
-
"chokidar": "^3.5.2",
|
|
51
|
-
"commander": "^8.1.0",
|
|
52
49
|
"globby": "^11.0.0",
|
|
53
|
-
"js-yaml": "^4.1.0",
|
|
54
50
|
"md5": "^2.3.0",
|
|
55
|
-
"p-map": "^4.0.0"
|
|
56
|
-
"signale": "^1.4.0"
|
|
51
|
+
"p-map": "^4.0.0"
|
|
57
52
|
},
|
|
58
53
|
"devDependencies": {
|
|
59
54
|
"@scripts/build": "0.0.0",
|
|
60
55
|
"@scripts/jest-config": "0.0.0",
|
|
61
56
|
"@types/jest": "^26",
|
|
62
|
-
"@types/js-yaml": "^4.0.2",
|
|
63
57
|
"@types/md5": "^2.3.1",
|
|
64
58
|
"@types/node": "^14",
|
|
65
59
|
"@types/react": "^17",
|
|
66
60
|
"@types/react-dom": "^17",
|
|
67
|
-
"@types/signale": "^1.4.2",
|
|
68
|
-
"execa": "^5.1.1",
|
|
69
61
|
"jest": "^27",
|
|
70
62
|
"typescript": "^4"
|
|
71
63
|
},
|
package/tests/index.test.ts
DELETED
package/tests/tsconfig.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@modern-js/tsconfig/base",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": true,
|
|
5
|
-
"jsx": "preserve",
|
|
6
|
-
"baseUrl": "./",
|
|
7
|
-
"outDir": "./out",
|
|
8
|
-
"emitDeclarationOnly": true,
|
|
9
|
-
"isolatedModules": true,
|
|
10
|
-
"paths": {},
|
|
11
|
-
"types": ["node", "jest"]
|
|
12
|
-
}
|
|
13
|
-
}
|