wisdom 16.0.4 → 16.0.6
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 +12 -0
- package/lib/runner.js +5 -1
- package/package.json +4 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2025.11.30, v16.0.6
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 25accd5 wisdom: read-package-up v12.0.0
|
|
5
|
+
- 2917e7a wisdom: eslint-plugin-putout v29.0.0
|
|
6
|
+
- 4af0004 wisdom: @putout/cli-choose v3.0.0
|
|
7
|
+
|
|
8
|
+
2025.09.09, v16.0.5
|
|
9
|
+
|
|
10
|
+
fix:
|
|
11
|
+
- 62333d3 wisdom: publish -> publish --tag latest
|
|
12
|
+
|
|
1
13
|
2025.09.09, v16.0.4
|
|
2
14
|
|
|
3
15
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "16.0.6",
|
|
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",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"url": "git+https://github.com/coderaiser/wisdom.git"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@putout/cli-choose": "^
|
|
35
|
+
"@putout/cli-choose": "^3.0.0",
|
|
36
36
|
"changelog-io": "^9.0.0",
|
|
37
37
|
"currify": "^4.0.0",
|
|
38
38
|
"enquirer": "^2.3.6",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"minor": "^1.2.0",
|
|
44
44
|
"parent-directories": "^3.0.0",
|
|
45
45
|
"prepend": "^1.0.1",
|
|
46
|
-
"read-package-up": "^
|
|
46
|
+
"read-package-up": "^12.0.0",
|
|
47
47
|
"readjson": "^2.2.2",
|
|
48
48
|
"redrun": "^12.0.0",
|
|
49
49
|
"rendy": "^4.1.3",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"c8": "^10.1.2",
|
|
60
60
|
"escover": "^4.1.0",
|
|
61
61
|
"eslint": "^9.35.0",
|
|
62
|
-
"eslint-plugin-putout": "^
|
|
62
|
+
"eslint-plugin-putout": "^29.0.0",
|
|
63
63
|
"madrun": "^11.0.2",
|
|
64
64
|
"mock-import": "^4.0.3",
|
|
65
65
|
"montag": "^1.2.1",
|