wisdom 13.1.1 → 14.0.0

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/ChangeLog CHANGED
@@ -1,3 +1,18 @@
1
+ 2023.03.07, v14.0.0
2
+
3
+ feature:
4
+ - package: putout v29.0.1
5
+ - package: supertape v8.3.0
6
+ - package: changelog-io v8.0.0: add commit hash to produced ChangeLog
7
+ - package: eslint-plugin-putout v16.2.1
8
+ - package: putout v27.7.0
9
+
10
+ 2022.06.17, v13.1.2
11
+
12
+ fix:
13
+ - wisdom: private
14
+
15
+
1
16
  2022.05.24, v13.1.1
2
17
 
3
18
  feature:
package/lib/parser.js CHANGED
@@ -30,7 +30,7 @@ const check = (info) => (path) => {
30
30
  if (path.startsWith(':'))
31
31
  return true;
32
32
 
33
- const cleanPath = path.replace(/[!^:]/, '');
33
+ const cleanPath = path.replace(/[!^:-]/, '');
34
34
  const result = jessy(cleanPath, info);
35
35
 
36
36
  if (path.startsWith('-'))
package/lib/release.js CHANGED
@@ -12,7 +12,7 @@ export async function release({version, info, chlog, emitter, count}) {
12
12
  return;
13
13
  }
14
14
 
15
- const tag = 'v' + version;
15
+ const tag = `v${version}`;
16
16
 
17
17
  if (!info.repository) {
18
18
  emitter.emit('data', `Error releasing on github: no 'repository' field found in 'package.json'\n`);
package/lib/wisdom.js CHANGED
@@ -72,7 +72,7 @@ async function publish({version, info, emitter, dryRun}) {
72
72
 
73
73
  if (!version.indexOf('v')) {
74
74
  version = version.slice(1);
75
- type += 'v' + version;
75
+ type += `v${version}`;
76
76
  } else if (/major|minor|patch/.test(version)) {
77
77
  type += version;
78
78
  version = minor(version, info.version);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "13.1.1",
3
+ "version": "14.0.0",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "configurable publish releases to github and npm",
6
6
  "homepage": "http://github.com/coderaiser/wisdom",
@@ -33,7 +33,7 @@
33
33
  "url": "git://github.com/coderaiser/wisdom.git"
34
34
  },
35
35
  "dependencies": {
36
- "changelog-io": "^7.0.0",
36
+ "changelog-io": "^8.0.0",
37
37
  "currify": "^4.0.0",
38
38
  "envir": "^2.0.0",
39
39
  "fullstore": "^3.0.0",
@@ -57,12 +57,12 @@
57
57
  "c8": "^7.8.0",
58
58
  "escover": "^2.1.2",
59
59
  "eslint": "^8.1.0",
60
- "eslint-plugin-node": "^11.0.0",
61
- "eslint-plugin-putout": "^15.1.1",
60
+ "eslint-plugin-n": "^15.6.1",
61
+ "eslint-plugin-putout": "^16.2.1",
62
62
  "madrun": "^9.0.2",
63
63
  "mock-import": "^3.0.2",
64
64
  "montag": "^1.2.1",
65
- "putout": "^26.0.0",
66
- "supertape": "^7.0.1"
65
+ "putout": "^29.0.1",
66
+ "supertape": "^8.3.0"
67
67
  }
68
68
  }