easy-soft-develop 2.1.36 → 2.1.38

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/bin/cli.js CHANGED
@@ -75,7 +75,7 @@ program
75
75
  });
76
76
 
77
77
  program
78
- .command('create-repository-project')
78
+ .command('create-project')
79
79
  .description('create a repository project')
80
80
  .option('--name <string>', 'project name')
81
81
  .action((a, o) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.1.36",
3
+ "version": "2.1.38",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -66,6 +66,8 @@ function getGlobalDevelopPackages() {
66
66
 
67
67
  packages = packages.concat('easy-soft-develop');
68
68
 
69
+ packages = packages.concat('@changesets/cli');
70
+
69
71
  return packages;
70
72
  }
71
73