easy-soft-develop 2.0.188 → 2.0.189

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.188",
3
+ "version": "2.0.189",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -260,16 +260,18 @@ function createLernaProject(name) {
260
260
  if (!existDirectorySync(`./.git`)) {
261
261
  promptSuccess(`step *: init git(branch main) success`);
262
262
 
263
- promptInfo('git init -b main');
263
+ promptInfo('step 1: git init -b main');
264
264
  exec('git init -b main');
265
265
 
266
- promptInfo('create README.md');
266
+ promptEmptyLine();
267
+
268
+ promptInfo('step 2: create README.md');
267
269
  writeFileSync('./README.md', '', { coverFile: false });
268
270
 
269
- promptInfo('git add -A');
271
+ promptInfo('step 3: git add -A');
270
272
  exec('git add -A');
271
273
 
272
- promptInfo('git commit -m "first commit"');
274
+ promptInfo('step 4: git commit -m "first commit"');
273
275
  exec('git commit -m "first commit"');
274
276
 
275
277
  promptEmptyLine();