wisdom 16.0.4 → 16.0.5

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,8 @@
1
+ 2025.09.09, v16.0.5
2
+
3
+ fix:
4
+ - 62333d3 wisdom: publish -> publish --tag latest
5
+
1
6
  2025.09.09, v16.0.4
2
7
 
3
8
  feature:
package/lib/runner.js CHANGED
@@ -10,6 +10,7 @@ import getEnv from './get-env.js';
10
10
  import {release} from './release.js';
11
11
  import runWisdom from './run/run-wisdom.js';
12
12
  import {traverse} from './traverse.js';
13
+ import {publish} from './publish.js';
13
14
 
14
15
  const prepend = promisify(_prepend);
15
16
 
@@ -75,7 +76,10 @@ export const run = async (paths, params) => {
75
76
  });
76
77
  },
77
78
  'publish': () => {
78
- execute(`npm publish`, version, cwd);
79
+ publish({
80
+ cwd,
81
+ version,
82
+ });
79
83
  },
80
84
  'done': async () => {
81
85
  await runWisdom('wisdom:done', '', version, info, emitter);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "16.0.4",
3
+ "version": "16.0.5",
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",