easy-soft-develop 2.0.180 → 2.0.181

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.0.180",
3
+ "version": "2.0.181",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -256,7 +256,9 @@ function createLernaProject(name) {
256
256
  cd(`./${lernaName}`);
257
257
 
258
258
  if (!existDirectorySync(`./${lernaName}/.git`)) {
259
- exec('git init');
259
+ exec('git init -b main');
260
+
261
+ exec(`touch ./${lernaName}/README.md`);
260
262
 
261
263
  exec('git add .');
262
264