wisdom 16.0.1 → 16.0.2

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,11 @@
1
+ 2025.03.30, v16.0.2
2
+
3
+ fix:
4
+ - 29023c9 wisdom: ctrl+c
5
+
6
+ feature:
7
+ - e8e7477 wisdom: supertape v11.0.4
8
+
1
9
  2025.03.22, v16.0.1
2
10
 
3
11
  feature:
package/bin/wisdom.js CHANGED
@@ -7,6 +7,8 @@ import {choose} from '../lib/prompts.js';
7
7
 
8
8
  const require = createRequire(import.meta.url);
9
9
 
10
+ const info = () => require('../package.json');
11
+
10
12
  let [arg, option] = process.argv.slice(2);
11
13
 
12
14
  if (arg === '--dry-run') {
@@ -55,8 +57,6 @@ function version() {
55
57
  console.log('v' + info().version);
56
58
  }
57
59
 
58
- const info = () => require('../package.json');
59
-
60
60
  function help() {
61
61
  const bin = require('../json/bin.json');
62
62
  const usage = 'Usage: ' + info().name + ' [patch|minor|major]';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "16.0.1",
3
+ "version": "16.0.2",
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",
@@ -64,6 +64,6 @@
64
64
  "mock-import": "^4.0.3",
65
65
  "montag": "^1.2.1",
66
66
  "putout": "^39.0.4",
67
- "supertape": "^10.0.0"
67
+ "supertape": "^11.0.4"
68
68
  }
69
69
  }