easy-soft-develop 2.0.145 → 2.0.147

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.145",
3
+ "version": "2.0.147",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -33,8 +33,8 @@
33
33
  "cz": "cz",
34
34
  "postcz": "git push",
35
35
  "publish:npm": "npm run publish:patch:npm",
36
- "prepublish:patch:npm": "npm run cz&& npm version patch && npm run change:npm:registry:npm",
37
- "publish:patch:npm": "npm publish",
36
+ "prepublish:patch:npm": "npm run cz&& npm version patch",
37
+ "publish:patch:npm": "npm publish --registry https://registry.npmjs.org/",
38
38
  "postpublish:patch:npm": "npm run change:npm:registry:local",
39
39
  "test:bin:check-all-package-version": "node ./bin/cli.js check-all-package-version",
40
40
  "test:bin:commit-refresh": "node ./bin/cli.js commit-refresh",
@@ -8,6 +8,7 @@ const {
8
8
  cd,
9
9
  checkStringIsEmpty,
10
10
  checkInCollection,
11
+ promptEmptyLine,
11
12
  } = require('../tools/meta');
12
13
 
13
14
  exports.run = function (s, o) {
@@ -33,6 +34,8 @@ exports.run = function (s, o) {
33
34
  );
34
35
 
35
36
  exec(`npm publish --registry https://registry.npmjs.org/`);
37
+
38
+ promptEmptyLine();
36
39
  } catch (error) {
37
40
  promptError(error);
38
41
  }