easy-soft-develop 2.1.220 → 2.1.222

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.1.220",
3
+ "version": "2.1.222",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -39,7 +39,7 @@ function getDevelopUpdateProjectFromRepositoryConfig(
39
39
 
40
40
  if (!developUpdateProjectFromRepositoryConfigFileExist) {
41
41
  if (createFileWhenNoExist) {
42
- createDevelopUpdateProjectFromRepositoryConfigFile([]);
42
+ createDevelopUpdateProjectFromRepositoryConfigFile();
43
43
  } else {
44
44
  return developUpdateProjectFromRepository;
45
45
  }
@@ -19,6 +19,9 @@ const { prettierAllPackageJson } = require('./prettier.package.json');
19
19
  const {
20
20
  getDevelopSubPathVersionNcuConfig,
21
21
  } = require('../config/develop.subPath.version.ncu');
22
+ const {
23
+ getDevelopUpdateProjectFromRepositoryConfig,
24
+ } = require('../config/develop.update.project.from.repository');
22
25
 
23
26
  function createMainFile(fileWithContentCollection) {
24
27
  if (!Array.isArray(fileWithContentCollection)) {
@@ -117,6 +120,8 @@ function adjustMainPackageJsonScript({ scripts }) {
117
120
  ...getDevelopSubPathVersionNcuConfig(true),
118
121
  };
119
122
 
123
+ getDevelopUpdateProjectFromRepositoryConfig(true);
124
+
120
125
  loopPackage(paths, ({ name, path }) => {
121
126
  publishPackageNameList.push(name);
122
127