easy-soft-develop 2.0.199 → 2.0.201

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 (41) hide show
  1. package/package.json +23 -22
  2. package/src/tools/clean.js +0 -6
  3. package/types/cliCollection/check-all-package-version.d.ts +1 -1
  4. package/types/cliCollection/clear-all-dependence.d.ts +1 -1
  5. package/types/cliCollection/commit-refresh.d.ts +1 -1
  6. package/types/cliCollection/create-assist-scripts.cli.d.ts +1 -1
  7. package/types/cliCollection/create-lerna-project.d.ts +1 -1
  8. package/types/cliCollection/create-project-with-template.d.ts +1 -1
  9. package/types/cliCollection/prompt.d.ts +1 -1
  10. package/types/cliCollection/publish-to-npm.d.ts +1 -1
  11. package/types/cliCollection/sleep.d.ts +1 -1
  12. package/types/cliCollection/update-all-package-version.d.ts +1 -1
  13. package/types/cliCollection/update-package-from-package.d.ts +1 -1
  14. package/types/index.d.ts +43 -43
  15. package/types/project/initProject.d.ts +1 -1
  16. package/types/templates/babel.config.template.d.ts +8 -8
  17. package/types/templates/commitlint.config.template.d.ts +8 -8
  18. package/types/templates/cz.config.template.d.ts +8 -8
  19. package/types/templates/editor.template.d.ts +8 -8
  20. package/types/templates/eslint.template.d.ts +178 -178
  21. package/types/templates/git.template.d.ts +18 -18
  22. package/types/templates/jest.template.d.ts +17 -17
  23. package/types/templates/lint-staged.template.d.ts +8 -8
  24. package/types/templates/package.template.d.ts +38 -38
  25. package/types/templates/prettier.template.d.ts +28 -28
  26. package/types/templates/stylelint.template.d.ts +27 -27
  27. package/types/templates/template.config.d.ts +1 -1
  28. package/types/tools/clean.d.ts +1 -1
  29. package/types/tools/commit.refresh.d.ts +1 -1
  30. package/types/tools/develop.file.d.ts +14 -14
  31. package/types/tools/initial.environment.d.ts +6 -6
  32. package/types/tools/meta.d.ts +42 -42
  33. package/types/tools/package.dependence.d.ts +3 -3
  34. package/types/tools/package.install.global.develop.dependence.d.ts +7 -7
  35. package/types/tools/package.script.d.ts +4 -4
  36. package/types/tools/package.tools.d.ts +8 -8
  37. package/types/tools/package.update.d.ts +3 -3
  38. package/types/tools/prettier.file.d.ts +2 -2
  39. package/types/tools/prettier.package.json.d.ts +2 -2
  40. package/types/tools/sleep.d.ts +1 -1
  41. package/types/tools/update.package.from.package.d.ts +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.0.199",
3
+ "version": "2.0.201",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -26,16 +26,7 @@
26
26
  "types/"
27
27
  ],
28
28
  "scripts": {
29
- "change:npm:registry:local": "nrm use local",
30
- "change:npm:registry:npm": "nrm use npm",
31
29
  "commitlint": "npx commitlint --edit",
32
- "precz": "npm run z:prettier:format:change && node ./bin/cli.js commit-refresh && npm run z:tsc:build && git stage -A",
33
- "cz": "cz",
34
- "postcz": "git push",
35
- "publish:npm": "npm run publish:patch:npm",
36
- "prepublish:patch:npm": "npm run cz && npm version patch",
37
- "publish:patch:npm": "npm publish --registry https://registry.npmjs.org/",
38
- "postpublish:patch:npm": "npm run change:npm:registry:local",
39
30
  "test:bin:check-all-package-version": "node ./bin/cli.js check-all-package-version",
40
31
  "test:bin:commit-refresh": "node ./bin/cli.js commit-refresh",
41
32
  "test:bin:create-assist-scripts": "node ./bin/cli.js create-assist-scripts",
@@ -49,13 +40,23 @@
49
40
  "test:createPackageUpdateAllVersionScriptFile": "node ./test/createPackageUpdateAllVersionScriptFile.test.js",
50
41
  "test:createSleepScriptFile": "node ./test/createSleepScriptFile.test.js",
51
42
  "test:inner:assignObject": "node ./test/assignObject.test.js",
52
- "z:ncu:u:all": "ncu -u",
43
+ "z:change:npm:registry:local": "nrm use local",
44
+ "z:change:npm:registry:npm": "nrm use npm",
45
+ "prez:cz": "node ./bin/cli.js commit-refresh && npm run z:prettier:format:change && npm run z:tsc:build && git stage -A",
46
+ "z:cz": "cz",
47
+ "z:install": "pnpm install",
48
+ "z:postcz": "git push",
53
49
  "z:prettier:format:all": "npx prettier --write .",
54
50
  "z:prettier:format:change": "npx prettier --cache --write . && node ./bin/cli.js prompt --message \"format changed files complete\" --type success --blankLine",
55
- "z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete"
51
+ "z:publish:build": "npm run z:publish:patch:npm",
52
+ "prez:publish:patch:npm": "npm run z:cz && npm version patch",
53
+ "z:publish:patch:npm": "npm publish --registry https://registry.npmjs.org/",
54
+ "postz:publish:patch:npm": "npm run z:change:npm:registry:local",
55
+ "z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete",
56
+ "z:update:all-package-version": "ncu -u"
56
57
  },
57
58
  "dependencies": {
58
- "commander": "^10.0.0",
59
+ "commander": "^10.0.1",
59
60
  "download": "^8.0.0",
60
61
  "download-git-repo": "^3.0.2",
61
62
  "fs-extra": "^11.1.1",
@@ -65,23 +66,23 @@
65
66
  "terminal-kit": "^3.0.0"
66
67
  },
67
68
  "devDependencies": {
68
- "@commitlint/cli": "^17.4.4",
69
- "@commitlint/config-conventional": "^17.4.4",
70
- "@commitlint/config-lerna-scopes": "^17.4.2",
71
- "@commitlint/cz-commitlint": "^17.4.4",
69
+ "@commitlint/cli": "^17.6.3",
70
+ "@commitlint/config-conventional": "^17.6.3",
71
+ "@commitlint/config-lerna-scopes": "^17.6.3",
72
+ "@commitlint/cz-commitlint": "^17.5.0",
72
73
  "commitizen": "^4.3.0",
73
74
  "conventional-changelog-conventionalcommits": "^5.0.0",
74
- "eslint": "^8.36.0",
75
+ "eslint": "^8.41.0",
75
76
  "eslint-config-prettier": "^8.8.0",
76
77
  "eslint-formatter-pretty": "^5.0.0",
77
- "eslint-import-resolver-typescript": "^3.5.3",
78
+ "eslint-import-resolver-typescript": "^3.5.5",
78
79
  "eslint-plugin-eslint-comments": "^3.2.0",
79
80
  "eslint-plugin-import": "^2.27.5",
80
81
  "eslint-plugin-prettier": "^4.2.1",
81
82
  "eslint-plugin-promise": "^6.1.1",
82
83
  "husky": "^8.0.3",
83
- "lint-staged": "^13.2.0",
84
- "prettier": "^2.8.6",
85
- "prettier-plugin-packagejson": "^2.4.3"
84
+ "lint-staged": "^13.2.2",
85
+ "prettier": "^2.8.8",
86
+ "prettier-plugin-packagejson": "^2"
86
87
  }
87
88
  }
@@ -7,12 +7,6 @@ const {
7
7
  } = require('./meta');
8
8
  const { loopPackage } = require('./package.tools');
9
9
 
10
- /**
11
- * try clean
12
- * @param {*} cmd cmd
13
- * @param {*} tryTimes tryTimes
14
- * @returns
15
- */
16
10
  function tryClean(cmd, tryTimes) {
17
11
  if (tryTimes > 5) {
18
12
  promptInfo(`clean fail, ignore`);
@@ -1 +1 @@
1
- export function run(): void;
1
+ export function run(): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): Promise<void>;
1
+ export function run(s: any, o: any): Promise<void>;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(): void;
1
+ export function run(): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): void;
1
+ export function run(s: any, o: any): void;
@@ -1 +1 @@
1
- export function run(): void;
1
+ export function run(): void;
@@ -1 +1 @@
1
- export function run(s: any, o: any): Promise<void>;
1
+ export function run(s: any, o: any): Promise<void>;
package/types/index.d.ts CHANGED
@@ -1,43 +1,43 @@
1
- import { exec } from "./tools/meta";
2
- import { cd } from "./tools/meta";
3
- import { getArgCollection } from "./tools/meta";
4
- import { checkInCollection } from "./tools/meta";
5
- import { existFileSync } from "./tools/meta";
6
- import { existDirectorySync } from "./tools/meta";
7
- import { writeFileSync } from "./tools/meta";
8
- import { checkStringIsEmpty } from "./tools/meta";
9
- import { promptLine } from "./tools/meta";
10
- import { promptEmptyLine } from "./tools/meta";
11
- import { promptSuccess } from "./tools/meta";
12
- import { promptInfo } from "./tools/meta";
13
- import { promptWarn } from "./tools/meta";
14
- import { promptError } from "./tools/meta";
15
- import { isObject } from "./tools/meta";
16
- import { isArray } from "./tools/meta";
17
- import { assignObject } from "./tools/meta";
18
- import { mkdirSync } from "./tools/meta";
19
- import { readJsonFileSync } from "./tools/meta";
20
- import { writeJsonFileSync } from "./tools/meta";
21
- import { writeFileWithFolderAndNameSync } from "./tools/meta";
22
- import { writeFileWithOptionsSync } from "./tools/meta";
23
- import { resolvePath } from "./tools/meta";
24
- import { exit } from "./tools/meta";
25
- import { clean } from "./tools/clean";
26
- import { sleep } from "./tools/sleep";
27
- import { commitRefresh } from "./tools/commit.refresh";
28
- import { initialEnvironment } from "./tools/initial.environment";
29
- import { installDevelopDependencePackages } from "./tools/package.install.global.develop.dependence";
30
- import { loopPackage } from "./tools/package.tools";
31
- import { checkAllPackageVersion } from "./tools/package.update";
32
- import { updateSpecialPackageVersion } from "./tools/package.update";
33
- import { updateAllPackageVersion } from "./tools/package.update";
34
- import { createCleanScriptFile } from "./tools/develop.file";
35
- import { createPackageCheckSpecialVersionScriptFile } from "./tools/develop.file";
36
- import { createInstallGlobalDevelopDependenceScriptFile } from "./tools/develop.file";
37
- import { createDevelopFiles } from "./tools/develop.file";
38
- import { prettierAllFile } from "./tools/prettier.file";
39
- import { prettierChangeFile } from "./tools/prettier.file";
40
- import { prettierAllPackageJson } from "./tools/prettier.package.json";
41
- import { prettierCurrentPackageJson } from "./tools/prettier.package.json";
42
- import { updatePackageFromPackage } from "./tools/update.package.from.package";
43
- export { exec, cd, getArgCollection, checkInCollection, existFileSync, existDirectorySync, writeFileSync, checkStringIsEmpty, promptLine, promptEmptyLine, promptSuccess, promptInfo, promptWarn, promptError, isObject, isArray, assignObject, mkdirSync, readJsonFileSync, writeJsonFileSync, writeFileWithFolderAndNameSync, writeFileWithOptionsSync, resolvePath, exit, clean, sleep, commitRefresh, initialEnvironment, installDevelopDependencePackages, loopPackage, checkAllPackageVersion, updateSpecialPackageVersion, updateAllPackageVersion, createCleanScriptFile, createPackageCheckSpecialVersionScriptFile, createInstallGlobalDevelopDependenceScriptFile, createDevelopFiles, prettierAllFile, prettierChangeFile, prettierAllPackageJson, prettierCurrentPackageJson, updatePackageFromPackage };
1
+ import { exec } from "./tools/meta";
2
+ import { cd } from "./tools/meta";
3
+ import { getArgCollection } from "./tools/meta";
4
+ import { checkInCollection } from "./tools/meta";
5
+ import { existFileSync } from "./tools/meta";
6
+ import { existDirectorySync } from "./tools/meta";
7
+ import { writeFileSync } from "./tools/meta";
8
+ import { checkStringIsEmpty } from "./tools/meta";
9
+ import { promptLine } from "./tools/meta";
10
+ import { promptEmptyLine } from "./tools/meta";
11
+ import { promptSuccess } from "./tools/meta";
12
+ import { promptInfo } from "./tools/meta";
13
+ import { promptWarn } from "./tools/meta";
14
+ import { promptError } from "./tools/meta";
15
+ import { isObject } from "./tools/meta";
16
+ import { isArray } from "./tools/meta";
17
+ import { assignObject } from "./tools/meta";
18
+ import { mkdirSync } from "./tools/meta";
19
+ import { readJsonFileSync } from "./tools/meta";
20
+ import { writeJsonFileSync } from "./tools/meta";
21
+ import { writeFileWithFolderAndNameSync } from "./tools/meta";
22
+ import { writeFileWithOptionsSync } from "./tools/meta";
23
+ import { resolvePath } from "./tools/meta";
24
+ import { exit } from "./tools/meta";
25
+ import { clean } from "./tools/clean";
26
+ import { sleep } from "./tools/sleep";
27
+ import { commitRefresh } from "./tools/commit.refresh";
28
+ import { initialEnvironment } from "./tools/initial.environment";
29
+ import { installDevelopDependencePackages } from "./tools/package.install.global.develop.dependence";
30
+ import { loopPackage } from "./tools/package.tools";
31
+ import { checkAllPackageVersion } from "./tools/package.update";
32
+ import { updateSpecialPackageVersion } from "./tools/package.update";
33
+ import { updateAllPackageVersion } from "./tools/package.update";
34
+ import { createCleanScriptFile } from "./tools/develop.file";
35
+ import { createPackageCheckSpecialVersionScriptFile } from "./tools/develop.file";
36
+ import { createInstallGlobalDevelopDependenceScriptFile } from "./tools/develop.file";
37
+ import { createDevelopFiles } from "./tools/develop.file";
38
+ import { prettierAllFile } from "./tools/prettier.file";
39
+ import { prettierChangeFile } from "./tools/prettier.file";
40
+ import { prettierAllPackageJson } from "./tools/prettier.package.json";
41
+ import { prettierCurrentPackageJson } from "./tools/prettier.package.json";
42
+ import { updatePackageFromPackage } from "./tools/update.package.from.package";
43
+ export { exec, cd, getArgCollection, checkInCollection, existFileSync, existDirectorySync, writeFileSync, checkStringIsEmpty, promptLine, promptEmptyLine, promptSuccess, promptInfo, promptWarn, promptError, isObject, isArray, assignObject, mkdirSync, readJsonFileSync, writeJsonFileSync, writeFileWithFolderAndNameSync, writeFileWithOptionsSync, resolvePath, exit, clean, sleep, commitRefresh, initialEnvironment, installDevelopDependencePackages, loopPackage, checkAllPackageVersion, updateSpecialPackageVersion, updateAllPackageVersion, createCleanScriptFile, createPackageCheckSpecialVersionScriptFile, createInstallGlobalDevelopDependenceScriptFile, createDevelopFiles, prettierAllFile, prettierChangeFile, prettierAllPackageJson, prettierCurrentPackageJson, updatePackageFromPackage };
@@ -1 +1 @@
1
- export function createLernaProject(name: any): void;
1
+ export function createLernaProject(name: any): void;
@@ -1,8 +1,8 @@
1
- export namespace contentFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { contentFileContent as fileContent };
6
- }
7
- declare const contentFileContent: string;
8
- export {};
1
+ export namespace contentFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { contentFileContent as fileContent };
6
+ }
7
+ declare const contentFileContent: string;
8
+ export {};
@@ -1,8 +1,8 @@
1
- export namespace contentFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { contentFileContent as fileContent };
6
- }
7
- declare const contentFileContent: string;
8
- export {};
1
+ export namespace contentFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { contentFileContent as fileContent };
6
+ }
7
+ declare const contentFileContent: string;
8
+ export {};
@@ -1,8 +1,8 @@
1
- export namespace contentFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { contentFileContent as fileContent };
6
- }
7
- declare const contentFileContent: "{\n \"path\": \"@commitlint/cz-commitlint\"\n}\n";
8
- export {};
1
+ export namespace contentFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { contentFileContent as fileContent };
6
+ }
7
+ declare const contentFileContent: "{\n \"path\": \"@commitlint/cz-commitlint\"\n}\n";
8
+ export {};
@@ -1,8 +1,8 @@
1
- export namespace contentFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { contentFileContent as fileContent };
6
- }
7
- declare const contentFileContent: string;
8
- export {};
1
+ export namespace contentFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { contentFileContent as fileContent };
6
+ }
7
+ declare const contentFileContent: string;
8
+ export {};
@@ -1,178 +1,178 @@
1
- export namespace ignoreFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { ignoreFileContent as fileContent };
6
- }
7
- export namespace contentFile {
8
- const folderPath_1: string;
9
- export { folderPath_1 as folderPath };
10
- const fileName_1: string;
11
- export { fileName_1 as fileName };
12
- const coverFile_1: boolean;
13
- export { coverFile_1 as coverFile };
14
- export { contentFileContent as fileContent };
15
- }
16
- export namespace ruleEmbedFile {
17
- const folderPath_2: string;
18
- export { folderPath_2 as folderPath };
19
- const fileName_2: string;
20
- export { fileName_2 as fileName };
21
- const coverFile_2: boolean;
22
- export { coverFile_2 as coverFile };
23
- export { ruleEmbedFileContent as fileContent };
24
- }
25
- export namespace ruleCustomFile {
26
- const folderPath_3: string;
27
- export { folderPath_3 as folderPath };
28
- const fileName_3: string;
29
- export { fileName_3 as fileName };
30
- const coverFile_3: boolean;
31
- export { coverFile_3 as coverFile };
32
- export { ruleCustomFileContent as fileContent };
33
- }
34
- export namespace ruleFile {
35
- const folderPath_4: string;
36
- export { folderPath_4 as folderPath };
37
- const fileName_4: string;
38
- export { fileName_4 as fileName };
39
- const coverFile_4: boolean;
40
- export { coverFile_4 as coverFile };
41
- export { ruleFileContent as fileContent };
42
- }
43
- export namespace configFile {
44
- const folderPath_5: string;
45
- export { folderPath_5 as folderPath };
46
- const fileName_5: string;
47
- export { fileName_5 as fileName };
48
- const coverFile_5: boolean;
49
- export { coverFile_5 as coverFile };
50
- export { configFileContent as fileContent };
51
- }
52
- export namespace extendEmbedFile {
53
- const folderPath_6: string;
54
- export { folderPath_6 as folderPath };
55
- const fileName_6: string;
56
- export { fileName_6 as fileName };
57
- const coverFile_6: boolean;
58
- export { coverFile_6 as coverFile };
59
- export { extendEmbedFileContent as fileContent };
60
- }
61
- export namespace extendCustomFile {
62
- const folderPath_7: string;
63
- export { folderPath_7 as folderPath };
64
- const fileName_7: string;
65
- export { fileName_7 as fileName };
66
- const coverFile_7: boolean;
67
- export { coverFile_7 as coverFile };
68
- export { extendCustomFileContent as fileContent };
69
- }
70
- export namespace extendFile {
71
- const folderPath_8: string;
72
- export { folderPath_8 as folderPath };
73
- const fileName_8: string;
74
- export { fileName_8 as fileName };
75
- const coverFile_8: boolean;
76
- export { coverFile_8 as coverFile };
77
- export { extendFileContent as fileContent };
78
- }
79
- export namespace pluginEmbedFile {
80
- const folderPath_9: string;
81
- export { folderPath_9 as folderPath };
82
- const fileName_9: string;
83
- export { fileName_9 as fileName };
84
- const coverFile_9: boolean;
85
- export { coverFile_9 as coverFile };
86
- export { pluginEmbedFileContent as fileContent };
87
- }
88
- export namespace pluginCustomFile {
89
- const folderPath_10: string;
90
- export { folderPath_10 as folderPath };
91
- const fileName_10: string;
92
- export { fileName_10 as fileName };
93
- const coverFile_10: boolean;
94
- export { coverFile_10 as coverFile };
95
- export { pluginCustomFileContent as fileContent };
96
- }
97
- export namespace pluginFile {
98
- const folderPath_11: string;
99
- export { folderPath_11 as folderPath };
100
- const fileName_11: string;
101
- export { fileName_11 as fileName };
102
- const coverFile_11: boolean;
103
- export { coverFile_11 as coverFile };
104
- export { pluginFileContent as fileContent };
105
- }
106
- export namespace parserEmbedFile {
107
- const folderPath_12: string;
108
- export { folderPath_12 as folderPath };
109
- const fileName_12: string;
110
- export { fileName_12 as fileName };
111
- const coverFile_12: boolean;
112
- export { coverFile_12 as coverFile };
113
- export { parserEmbedFileContent as fileContent };
114
- }
115
- export namespace parserCustomFile {
116
- const folderPath_13: string;
117
- export { folderPath_13 as folderPath };
118
- const fileName_13: string;
119
- export { fileName_13 as fileName };
120
- const coverFile_13: boolean;
121
- export { coverFile_13 as coverFile };
122
- export { parserCustomFileContent as fileContent };
123
- }
124
- export namespace parserFile {
125
- const folderPath_14: string;
126
- export { folderPath_14 as folderPath };
127
- const fileName_14: string;
128
- export { fileName_14 as fileName };
129
- const coverFile_14: boolean;
130
- export { coverFile_14 as coverFile };
131
- export { parserFileContent as fileContent };
132
- }
133
- export namespace settingEmbedFile {
134
- const folderPath_15: string;
135
- export { folderPath_15 as folderPath };
136
- const fileName_15: string;
137
- export { fileName_15 as fileName };
138
- const coverFile_15: boolean;
139
- export { coverFile_15 as coverFile };
140
- export { settingEmbedFileContent as fileContent };
141
- }
142
- export namespace settingCustomFile {
143
- const folderPath_16: string;
144
- export { folderPath_16 as folderPath };
145
- const fileName_16: string;
146
- export { fileName_16 as fileName };
147
- const coverFile_16: boolean;
148
- export { coverFile_16 as coverFile };
149
- export { settingCustomFileContent as fileContent };
150
- }
151
- export namespace settingFile {
152
- const folderPath_17: string;
153
- export { folderPath_17 as folderPath };
154
- const fileName_17: string;
155
- export { fileName_17 as fileName };
156
- const coverFile_17: boolean;
157
- export { coverFile_17 as coverFile };
158
- export { settingFileContent as fileContent };
159
- }
160
- declare const ignoreFileContent: string;
161
- declare const contentFileContent: string;
162
- declare const ruleEmbedFileContent: string;
163
- declare const ruleCustomFileContent: string;
164
- declare const ruleFileContent: string;
165
- declare const configFileContent: string;
166
- declare const extendEmbedFileContent: string;
167
- declare const extendCustomFileContent: string;
168
- declare const extendFileContent: string;
169
- declare const pluginEmbedFileContent: string;
170
- declare const pluginCustomFileContent: string;
171
- declare const pluginFileContent: string;
172
- declare const parserEmbedFileContent: string;
173
- declare const parserCustomFileContent: string;
174
- declare const parserFileContent: string;
175
- declare const settingEmbedFileContent: string;
176
- declare const settingCustomFileContent: string;
177
- declare const settingFileContent: string;
178
- export {};
1
+ export namespace ignoreFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { ignoreFileContent as fileContent };
6
+ }
7
+ export namespace contentFile {
8
+ const folderPath_1: string;
9
+ export { folderPath_1 as folderPath };
10
+ const fileName_1: string;
11
+ export { fileName_1 as fileName };
12
+ const coverFile_1: boolean;
13
+ export { coverFile_1 as coverFile };
14
+ export { contentFileContent as fileContent };
15
+ }
16
+ export namespace ruleEmbedFile {
17
+ const folderPath_2: string;
18
+ export { folderPath_2 as folderPath };
19
+ const fileName_2: string;
20
+ export { fileName_2 as fileName };
21
+ const coverFile_2: boolean;
22
+ export { coverFile_2 as coverFile };
23
+ export { ruleEmbedFileContent as fileContent };
24
+ }
25
+ export namespace ruleCustomFile {
26
+ const folderPath_3: string;
27
+ export { folderPath_3 as folderPath };
28
+ const fileName_3: string;
29
+ export { fileName_3 as fileName };
30
+ const coverFile_3: boolean;
31
+ export { coverFile_3 as coverFile };
32
+ export { ruleCustomFileContent as fileContent };
33
+ }
34
+ export namespace ruleFile {
35
+ const folderPath_4: string;
36
+ export { folderPath_4 as folderPath };
37
+ const fileName_4: string;
38
+ export { fileName_4 as fileName };
39
+ const coverFile_4: boolean;
40
+ export { coverFile_4 as coverFile };
41
+ export { ruleFileContent as fileContent };
42
+ }
43
+ export namespace configFile {
44
+ const folderPath_5: string;
45
+ export { folderPath_5 as folderPath };
46
+ const fileName_5: string;
47
+ export { fileName_5 as fileName };
48
+ const coverFile_5: boolean;
49
+ export { coverFile_5 as coverFile };
50
+ export { configFileContent as fileContent };
51
+ }
52
+ export namespace extendEmbedFile {
53
+ const folderPath_6: string;
54
+ export { folderPath_6 as folderPath };
55
+ const fileName_6: string;
56
+ export { fileName_6 as fileName };
57
+ const coverFile_6: boolean;
58
+ export { coverFile_6 as coverFile };
59
+ export { extendEmbedFileContent as fileContent };
60
+ }
61
+ export namespace extendCustomFile {
62
+ const folderPath_7: string;
63
+ export { folderPath_7 as folderPath };
64
+ const fileName_7: string;
65
+ export { fileName_7 as fileName };
66
+ const coverFile_7: boolean;
67
+ export { coverFile_7 as coverFile };
68
+ export { extendCustomFileContent as fileContent };
69
+ }
70
+ export namespace extendFile {
71
+ const folderPath_8: string;
72
+ export { folderPath_8 as folderPath };
73
+ const fileName_8: string;
74
+ export { fileName_8 as fileName };
75
+ const coverFile_8: boolean;
76
+ export { coverFile_8 as coverFile };
77
+ export { extendFileContent as fileContent };
78
+ }
79
+ export namespace pluginEmbedFile {
80
+ const folderPath_9: string;
81
+ export { folderPath_9 as folderPath };
82
+ const fileName_9: string;
83
+ export { fileName_9 as fileName };
84
+ const coverFile_9: boolean;
85
+ export { coverFile_9 as coverFile };
86
+ export { pluginEmbedFileContent as fileContent };
87
+ }
88
+ export namespace pluginCustomFile {
89
+ const folderPath_10: string;
90
+ export { folderPath_10 as folderPath };
91
+ const fileName_10: string;
92
+ export { fileName_10 as fileName };
93
+ const coverFile_10: boolean;
94
+ export { coverFile_10 as coverFile };
95
+ export { pluginCustomFileContent as fileContent };
96
+ }
97
+ export namespace pluginFile {
98
+ const folderPath_11: string;
99
+ export { folderPath_11 as folderPath };
100
+ const fileName_11: string;
101
+ export { fileName_11 as fileName };
102
+ const coverFile_11: boolean;
103
+ export { coverFile_11 as coverFile };
104
+ export { pluginFileContent as fileContent };
105
+ }
106
+ export namespace parserEmbedFile {
107
+ const folderPath_12: string;
108
+ export { folderPath_12 as folderPath };
109
+ const fileName_12: string;
110
+ export { fileName_12 as fileName };
111
+ const coverFile_12: boolean;
112
+ export { coverFile_12 as coverFile };
113
+ export { parserEmbedFileContent as fileContent };
114
+ }
115
+ export namespace parserCustomFile {
116
+ const folderPath_13: string;
117
+ export { folderPath_13 as folderPath };
118
+ const fileName_13: string;
119
+ export { fileName_13 as fileName };
120
+ const coverFile_13: boolean;
121
+ export { coverFile_13 as coverFile };
122
+ export { parserCustomFileContent as fileContent };
123
+ }
124
+ export namespace parserFile {
125
+ const folderPath_14: string;
126
+ export { folderPath_14 as folderPath };
127
+ const fileName_14: string;
128
+ export { fileName_14 as fileName };
129
+ const coverFile_14: boolean;
130
+ export { coverFile_14 as coverFile };
131
+ export { parserFileContent as fileContent };
132
+ }
133
+ export namespace settingEmbedFile {
134
+ const folderPath_15: string;
135
+ export { folderPath_15 as folderPath };
136
+ const fileName_15: string;
137
+ export { fileName_15 as fileName };
138
+ const coverFile_15: boolean;
139
+ export { coverFile_15 as coverFile };
140
+ export { settingEmbedFileContent as fileContent };
141
+ }
142
+ export namespace settingCustomFile {
143
+ const folderPath_16: string;
144
+ export { folderPath_16 as folderPath };
145
+ const fileName_16: string;
146
+ export { fileName_16 as fileName };
147
+ const coverFile_16: boolean;
148
+ export { coverFile_16 as coverFile };
149
+ export { settingCustomFileContent as fileContent };
150
+ }
151
+ export namespace settingFile {
152
+ const folderPath_17: string;
153
+ export { folderPath_17 as folderPath };
154
+ const fileName_17: string;
155
+ export { fileName_17 as fileName };
156
+ const coverFile_17: boolean;
157
+ export { coverFile_17 as coverFile };
158
+ export { settingFileContent as fileContent };
159
+ }
160
+ declare const ignoreFileContent: string;
161
+ declare const contentFileContent: string;
162
+ declare const ruleEmbedFileContent: string;
163
+ declare const ruleCustomFileContent: string;
164
+ declare const ruleFileContent: string;
165
+ declare const configFileContent: string;
166
+ declare const extendEmbedFileContent: string;
167
+ declare const extendCustomFileContent: string;
168
+ declare const extendFileContent: string;
169
+ declare const pluginEmbedFileContent: string;
170
+ declare const pluginCustomFileContent: string;
171
+ declare const pluginFileContent: string;
172
+ declare const parserEmbedFileContent: string;
173
+ declare const parserCustomFileContent: string;
174
+ declare const parserFileContent: string;
175
+ declare const settingEmbedFileContent: string;
176
+ declare const settingCustomFileContent: string;
177
+ declare const settingFileContent: string;
178
+ export {};
@@ -1,18 +1,18 @@
1
- export namespace attributeFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { attributeFileContent as fileContent };
6
- }
7
- export namespace ignoreFile {
8
- const folderPath_1: string;
9
- export { folderPath_1 as folderPath };
10
- const fileName_1: string;
11
- export { fileName_1 as fileName };
12
- const coverFile_1: boolean;
13
- export { coverFile_1 as coverFile };
14
- export { ignoreFileContent as fileContent };
15
- }
16
- declare const attributeFileContent: string;
17
- declare const ignoreFileContent: string;
18
- export {};
1
+ export namespace attributeFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { attributeFileContent as fileContent };
6
+ }
7
+ export namespace ignoreFile {
8
+ const folderPath_1: string;
9
+ export { folderPath_1 as folderPath };
10
+ const fileName_1: string;
11
+ export { fileName_1 as fileName };
12
+ const coverFile_1: boolean;
13
+ export { coverFile_1 as coverFile };
14
+ export { ignoreFileContent as fileContent };
15
+ }
16
+ declare const attributeFileContent: string;
17
+ declare const ignoreFileContent: string;
18
+ export {};
@@ -1,17 +1,17 @@
1
- export const configFileContent: string;
2
- export namespace configFile {
3
- export const folderPath: string;
4
- export const fileName: string;
5
- export const coverFile: boolean;
6
- export { configFileContent as fileContent };
7
- }
8
- export const simpleTestFileContent: string;
9
- export namespace simpleTestFile {
10
- const folderPath_1: string;
11
- export { folderPath_1 as folderPath };
12
- const fileName_1: string;
13
- export { fileName_1 as fileName };
14
- const coverFile_1: boolean;
15
- export { coverFile_1 as coverFile };
16
- export { simpleTestFileContent as fileContent };
17
- }
1
+ export const configFileContent: string;
2
+ export namespace configFile {
3
+ export const folderPath: string;
4
+ export const fileName: string;
5
+ export const coverFile: boolean;
6
+ export { configFileContent as fileContent };
7
+ }
8
+ export const simpleTestFileContent: string;
9
+ export namespace simpleTestFile {
10
+ const folderPath_1: string;
11
+ export { folderPath_1 as folderPath };
12
+ const fileName_1: string;
13
+ export { fileName_1 as fileName };
14
+ const coverFile_1: boolean;
15
+ export { coverFile_1 as coverFile };
16
+ export { simpleTestFileContent as fileContent };
17
+ }
@@ -1,8 +1,8 @@
1
- export namespace contentFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { contentFileContent as fileContent };
6
- }
7
- declare const contentFileContent: string;
8
- export {};
1
+ export namespace contentFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { contentFileContent as fileContent };
6
+ }
7
+ declare const contentFileContent: string;
8
+ export {};
@@ -1,38 +1,38 @@
1
- export namespace globalChildPackageFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { globalChildPackageFileContent as fileContent };
6
- }
7
- export namespace globalMainPackageFile {
8
- const folderPath_1: string;
9
- export { folderPath_1 as folderPath };
10
- const fileName_1: string;
11
- export { fileName_1 as fileName };
12
- const coverFile_1: boolean;
13
- export { coverFile_1 as coverFile };
14
- export { globalMainPackageFileContent as fileContent };
15
- }
16
- export namespace customMainPackageFile {
17
- const folderPath_2: string;
18
- export { folderPath_2 as folderPath };
19
- const fileName_2: string;
20
- export { fileName_2 as fileName };
21
- const coverFile_2: boolean;
22
- export { coverFile_2 as coverFile };
23
- export { customMainPackageFileContent as fileContent };
24
- }
25
- export namespace customChildPackageFile {
26
- const folderPath_3: string;
27
- export { folderPath_3 as folderPath };
28
- const fileName_3: string;
29
- export { fileName_3 as fileName };
30
- const coverFile_3: boolean;
31
- export { coverFile_3 as coverFile };
32
- export { customChildPackageFileContent as fileContent };
33
- }
34
- declare const globalChildPackageFileContent: string;
35
- declare const globalMainPackageFileContent: string;
36
- declare const customMainPackageFileContent: string;
37
- declare const customChildPackageFileContent: string;
38
- export {};
1
+ export namespace globalChildPackageFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { globalChildPackageFileContent as fileContent };
6
+ }
7
+ export namespace globalMainPackageFile {
8
+ const folderPath_1: string;
9
+ export { folderPath_1 as folderPath };
10
+ const fileName_1: string;
11
+ export { fileName_1 as fileName };
12
+ const coverFile_1: boolean;
13
+ export { coverFile_1 as coverFile };
14
+ export { globalMainPackageFileContent as fileContent };
15
+ }
16
+ export namespace customMainPackageFile {
17
+ const folderPath_2: string;
18
+ export { folderPath_2 as folderPath };
19
+ const fileName_2: string;
20
+ export { fileName_2 as fileName };
21
+ const coverFile_2: boolean;
22
+ export { coverFile_2 as coverFile };
23
+ export { customMainPackageFileContent as fileContent };
24
+ }
25
+ export namespace customChildPackageFile {
26
+ const folderPath_3: string;
27
+ export { folderPath_3 as folderPath };
28
+ const fileName_3: string;
29
+ export { fileName_3 as fileName };
30
+ const coverFile_3: boolean;
31
+ export { coverFile_3 as coverFile };
32
+ export { customChildPackageFileContent as fileContent };
33
+ }
34
+ declare const globalChildPackageFileContent: string;
35
+ declare const globalMainPackageFileContent: string;
36
+ declare const customMainPackageFileContent: string;
37
+ declare const customChildPackageFileContent: string;
38
+ export {};
@@ -1,28 +1,28 @@
1
- export namespace ignoreFile {
2
- export const folderPath: string;
3
- export const fileName: string;
4
- export const coverFile: boolean;
5
- export { ignoreFileContent as fileContent };
6
- }
7
- export namespace contentFile {
8
- const folderPath_1: string;
9
- export { folderPath_1 as folderPath };
10
- const fileName_1: string;
11
- export { fileName_1 as fileName };
12
- const coverFile_1: boolean;
13
- export { coverFile_1 as coverFile };
14
- export { contentFileContent as fileContent };
15
- }
16
- export namespace configFile {
17
- const folderPath_2: string;
18
- export { folderPath_2 as folderPath };
19
- const fileName_2: string;
20
- export { fileName_2 as fileName };
21
- const coverFile_2: boolean;
22
- export { coverFile_2 as coverFile };
23
- export { configFileContent as fileContent };
24
- }
25
- declare const ignoreFileContent: string;
26
- declare const contentFileContent: string;
27
- declare const configFileContent: string;
28
- export {};
1
+ export namespace ignoreFile {
2
+ export const folderPath: string;
3
+ export const fileName: string;
4
+ export const coverFile: boolean;
5
+ export { ignoreFileContent as fileContent };
6
+ }
7
+ export namespace contentFile {
8
+ const folderPath_1: string;
9
+ export { folderPath_1 as folderPath };
10
+ const fileName_1: string;
11
+ export { fileName_1 as fileName };
12
+ const coverFile_1: boolean;
13
+ export { coverFile_1 as coverFile };
14
+ export { contentFileContent as fileContent };
15
+ }
16
+ export namespace configFile {
17
+ const folderPath_2: string;
18
+ export { folderPath_2 as folderPath };
19
+ const fileName_2: string;
20
+ export { fileName_2 as fileName };
21
+ const coverFile_2: boolean;
22
+ export { coverFile_2 as coverFile };
23
+ export { configFileContent as fileContent };
24
+ }
25
+ declare const ignoreFileContent: string;
26
+ declare const contentFileContent: string;
27
+ declare const configFileContent: string;
28
+ export {};
@@ -1,27 +1,27 @@
1
- export namespace ignoreFile {
2
- const folderPath: string;
3
- const fileName: string;
4
- const coverFile: boolean;
5
- const fileContent: string;
6
- }
7
- export namespace contentFile {
8
- const folderPath_1: string;
9
- export { folderPath_1 as folderPath };
10
- const fileName_1: string;
11
- export { fileName_1 as fileName };
12
- const coverFile_1: boolean;
13
- export { coverFile_1 as coverFile };
14
- export { contentFileContent as fileContent };
15
- }
16
- export namespace configFile {
17
- const folderPath_2: string;
18
- export { folderPath_2 as folderPath };
19
- const fileName_2: string;
20
- export { fileName_2 as fileName };
21
- const coverFile_2: boolean;
22
- export { coverFile_2 as coverFile };
23
- export { configFileContent as fileContent };
24
- }
25
- declare const contentFileContent: string;
26
- declare const configFileContent: string;
27
- export {};
1
+ export namespace ignoreFile {
2
+ const folderPath: string;
3
+ const fileName: string;
4
+ const coverFile: boolean;
5
+ const fileContent: string;
6
+ }
7
+ export namespace contentFile {
8
+ const folderPath_1: string;
9
+ export { folderPath_1 as folderPath };
10
+ const fileName_1: string;
11
+ export { fileName_1 as fileName };
12
+ const coverFile_1: boolean;
13
+ export { coverFile_1 as coverFile };
14
+ export { contentFileContent as fileContent };
15
+ }
16
+ export namespace configFile {
17
+ const folderPath_2: string;
18
+ export { folderPath_2 as folderPath };
19
+ const fileName_2: string;
20
+ export { fileName_2 as fileName };
21
+ const coverFile_2: boolean;
22
+ export { coverFile_2 as coverFile };
23
+ export { configFileContent as fileContent };
24
+ }
25
+ declare const contentFileContent: string;
26
+ declare const configFileContent: string;
27
+ export {};
@@ -1 +1 @@
1
- export const fileGlobalHeader: "/* eslint-disable no-undef */\n/* eslint-disable unicorn/prefer-module */\n/* eslint-disable no-useless-escape */\n";
1
+ export const fileGlobalHeader: "/* eslint-disable no-undef */\n/* eslint-disable unicorn/prefer-module */\n/* eslint-disable no-useless-escape */\n";
@@ -1 +1 @@
1
- export function clean(preCmd: any, ...targets: any[]): void;
1
+ export function clean(preCmd: any, ...targets: any[]): void;
@@ -1 +1 @@
1
- export function commitRefresh(fileName?: string, relativeFolder?: string): void;
1
+ export function commitRefresh(fileName?: string, relativeFolder?: string): void;
@@ -1,14 +1,14 @@
1
- export function createCzConfigFile(successMessage?: string): void;
2
- export function createCommitlintConfigFile(successMessage?: string): void;
3
- export function createBabelConfigFile(successMessage?: string): void;
4
- export function createNcuConfigFile(successMessage?: string): void;
5
- export function createNpmConfigFile(successMessage?: string): void;
6
- export function createCleanScriptFile(): boolean;
7
- export function createPackageCheckSpecialVersionScriptFile(): void;
8
- export function createInstallGlobalDevelopDependenceScriptFile(): void;
9
- /**
10
- * Create initial environment script files
11
- */
12
- export function createInitialEnvironmentScriptFiles(): void;
13
- export function createDevelopFiles(waitMessage?: string, successMessage?: string): void;
14
- export function createUpdatePackageFromPackageScriptFile(): boolean;
1
+ export function createCzConfigFile(successMessage?: string): void;
2
+ export function createCommitlintConfigFile(successMessage?: string): void;
3
+ export function createBabelConfigFile(successMessage?: string): void;
4
+ export function createNcuConfigFile(successMessage?: string): void;
5
+ export function createNpmConfigFile(successMessage?: string): void;
6
+ export function createCleanScriptFile(): boolean;
7
+ export function createPackageCheckSpecialVersionScriptFile(): void;
8
+ export function createInstallGlobalDevelopDependenceScriptFile(): void;
9
+ /**
10
+ * Create initial environment script files
11
+ */
12
+ export function createInitialEnvironmentScriptFiles(): void;
13
+ export function createDevelopFiles(waitMessage?: string, successMessage?: string): void;
14
+ export function createUpdatePackageFromPackageScriptFile(): boolean;
@@ -1,6 +1,6 @@
1
- export function initialEnvironment({ mainFileContentList, packageFileContentList, mainScripts, childScripts, }: {
2
- mainFileContentList?: any[] | undefined;
3
- packageFileContentList?: any[] | undefined;
4
- mainScripts?: {} | undefined;
5
- childScripts?: {} | undefined;
6
- }): void;
1
+ export function initialEnvironment({ mainFileContentList, packageFileContentList, mainScripts, childScripts, }: {
2
+ mainFileContentList?: any[] | undefined;
3
+ packageFileContentList?: any[] | undefined;
4
+ mainScripts?: {} | undefined;
5
+ childScripts?: {} | undefined;
6
+ }): void;
@@ -1,42 +1,42 @@
1
- export function exec(cmd: any): void;
2
- export function cd(path: any): void;
3
- export function getArgCollection(): any;
4
- /**
5
- * Check value in the collection.
6
- * @param {Array} collection value collection
7
- * @param {*} target the target value will be checked
8
- */
9
- export function checkInCollection(collection: any[], target: any): boolean;
10
- export function existFileSync(path: any): any;
11
- export function existDirectorySync(path: any): any;
12
- export function writeFileSync(path: any, content: any, options?: {
13
- coverFile: boolean;
14
- }): boolean;
15
- export function checkStringIsEmpty(v: any): boolean;
16
- /**
17
- * Prompt line
18
- */
19
- export function promptLine(): void;
20
- export function promptEmptyLine(): void;
21
- export function promptSuccess(message: any): void;
22
- export function promptInfo(message: any): void;
23
- export function promptWarn(message: any): void;
24
- export function promptError(error: any): void;
25
- export function isObject(value: any): boolean;
26
- export function isArray(value: any): boolean;
27
- export function assignObject(source: any, ...mergeData: any[]): any;
28
- export function mkdirSync(path: any): void;
29
- export function readJsonFileSync(path: any): any;
30
- export function writeJsonFileSync(path: any, json: any, options?: {
31
- coverFile: boolean;
32
- }): boolean;
33
- export function writeFileWithFolderAndNameSync(folderPath: any, relativePath: any, fileName: any, fileContent: any, coverFile?: boolean): boolean;
34
- export function writeFileWithOptionsSync({ folderPath, relativePath, fileName, fileContent, coverFile, }: {
35
- folderPath: any;
36
- relativePath?: string | undefined;
37
- fileName: any;
38
- fileContent: any;
39
- coverFile?: boolean | undefined;
40
- }): boolean;
41
- export function resolvePath(path: any): any;
42
- export function exit(): any;
1
+ export function exec(cmd: any): void;
2
+ export function cd(path: any): void;
3
+ export function getArgCollection(): any;
4
+ /**
5
+ * Check value in the collection.
6
+ * @param {Array} collection value collection
7
+ * @param {*} target the target value will be checked
8
+ */
9
+ export function checkInCollection(collection: any[], target: any): boolean;
10
+ export function existFileSync(path: any): any;
11
+ export function existDirectorySync(path: any): any;
12
+ export function writeFileSync(path: any, content: any, options?: {
13
+ coverFile: boolean;
14
+ }): boolean;
15
+ export function checkStringIsEmpty(v: any): boolean;
16
+ /**
17
+ * Prompt line
18
+ */
19
+ export function promptLine(): void;
20
+ export function promptEmptyLine(): void;
21
+ export function promptSuccess(message: any): void;
22
+ export function promptInfo(message: any): void;
23
+ export function promptWarn(message: any): void;
24
+ export function promptError(error: any): void;
25
+ export function isObject(value: any): boolean;
26
+ export function isArray(value: any): boolean;
27
+ export function assignObject(source: any, ...mergeData: any[]): any;
28
+ export function mkdirSync(path: any): void;
29
+ export function readJsonFileSync(path: any): any;
30
+ export function writeJsonFileSync(path: any, json: any, options?: {
31
+ coverFile: boolean;
32
+ }): boolean;
33
+ export function writeFileWithFolderAndNameSync(folderPath: any, relativePath: any, fileName: any, fileContent: any, coverFile?: boolean): boolean;
34
+ export function writeFileWithOptionsSync({ folderPath, relativePath, fileName, fileContent, coverFile, }: {
35
+ folderPath: any;
36
+ relativePath?: string | undefined;
37
+ fileName: any;
38
+ fileContent: any;
39
+ coverFile?: boolean | undefined;
40
+ }): boolean;
41
+ export function resolvePath(path: any): any;
42
+ export function exit(): any;
@@ -1,3 +1,3 @@
1
- export function getGlobalDevelopPackages(): any[];
2
- export function getMainDevelopPackages(): any[];
3
- export function getProjectDevelopPackages(): any[];
1
+ export function getGlobalDevelopPackages(): any[];
2
+ export function getMainDevelopPackages(): any[];
3
+ export function getProjectDevelopPackages(): any[];
@@ -1,7 +1,7 @@
1
- export function installDevelopDependencePackages({ globalDevelopPackageList, mainDevelopPackageList, childrenDevelopPackageList, childrenSpecialDevelopPackageList, execInstall, }: {
2
- globalDevelopPackageList: any;
3
- mainDevelopPackageList?: any[] | undefined;
4
- childrenDevelopPackageList?: any[] | undefined;
5
- childrenSpecialDevelopPackageList?: any[] | undefined;
6
- execInstall?: boolean | undefined;
7
- }): void;
1
+ export function installDevelopDependencePackages({ globalDevelopPackageList, mainDevelopPackageList, childrenDevelopPackageList, childrenSpecialDevelopPackageList, execInstall, }: {
2
+ globalDevelopPackageList: any;
3
+ mainDevelopPackageList?: any[] | undefined;
4
+ childrenDevelopPackageList?: any[] | undefined;
5
+ childrenSpecialDevelopPackageList?: any[] | undefined;
6
+ execInstall?: boolean | undefined;
7
+ }): void;
@@ -1,4 +1,4 @@
1
- export const globalScript: {
2
- 'z:initial:environment': string;
3
- };
4
- export const packageScript: {};
1
+ export const globalScript: {
2
+ 'z:initial:environment': string;
3
+ };
4
+ export const packageScript: {};
@@ -1,8 +1,8 @@
1
- /**
2
- * loop all package
3
- */
4
- export function loopPackage(callback?: ({ name, absolutePath, relativePath }: {
5
- name: any;
6
- absolutePath: any;
7
- relativePath: any;
8
- }) => void): void;
1
+ /**
2
+ * loop all package
3
+ */
4
+ export function loopPackage(callback?: ({ name, absolutePath, relativePath }: {
5
+ name: any;
6
+ absolutePath: any;
7
+ relativePath: any;
8
+ }) => void): void;
@@ -1,3 +1,3 @@
1
- export function checkAllPackageVersion(): void;
2
- export function updateSpecialPackageVersion(packageList: any): void;
3
- export function updateAllPackageVersion(): void;
1
+ export function checkAllPackageVersion(): void;
2
+ export function updateSpecialPackageVersion(packageList: any): void;
3
+ export function updateAllPackageVersion(): void;
@@ -1,2 +1,2 @@
1
- export function prettierAllFile(): void;
2
- export function prettierChangeFile(): void;
1
+ export function prettierAllFile(): void;
2
+ export function prettierChangeFile(): void;
@@ -1,2 +1,2 @@
1
- export function prettierAllPackageJson(): void;
2
- export function prettierCurrentPackageJson(): void;
1
+ export function prettierAllPackageJson(): void;
2
+ export function prettierCurrentPackageJson(): void;
@@ -1 +1 @@
1
- export function sleep(n: any, showLog?: boolean): void;
1
+ export function sleep(n: any, showLog?: boolean): void;
@@ -1,7 +1,7 @@
1
- export function updatePackageFromPackage({ path, primaryRemoteUrl, spareRemoteUrl, agent, localFile, }: {
2
- path: any;
3
- primaryRemoteUrl: any;
4
- spareRemoteUrl: any;
5
- agent: any;
6
- localFile: any;
7
- }): Promise<void>;
1
+ export function updatePackageFromPackage({ path, primaryRemoteUrl, spareRemoteUrl, agent, localFile, }: {
2
+ path: any;
3
+ primaryRemoteUrl: any;
4
+ spareRemoteUrl: any;
5
+ agent: any;
6
+ localFile: any;
7
+ }): Promise<void>;