wisdom 16.0.3 → 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 +14 -0
- package/lib/runner.js +5 -1
- package/package.json +6 -6
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2025.09.09, v16.0.5
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 62333d3 wisdom: publish -> publish --tag latest
|
|
5
|
+
|
|
6
|
+
2025.09.09, v16.0.4
|
|
7
|
+
|
|
8
|
+
feature:
|
|
9
|
+
- 54c3c4f wisdom: supertape v11.3.0
|
|
10
|
+
- d09a5ee wisdom: putout v40.8.0
|
|
11
|
+
- 56b64e3 wisdom: madrun v11.0.2
|
|
12
|
+
- bc789de wisdom: eslint-plugin-putout v28.0.5
|
|
13
|
+
- f4b4f45 wisdom: eslint v9.35.0
|
|
14
|
+
|
|
1
15
|
2025.03.30, v16.0.3
|
|
2
16
|
|
|
3
17
|
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.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",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"c8": "^10.1.2",
|
|
60
60
|
"escover": "^4.1.0",
|
|
61
|
-
"eslint": "^9.
|
|
62
|
-
"eslint-plugin-putout": "^
|
|
63
|
-
"madrun": "^11.0.
|
|
61
|
+
"eslint": "^9.35.0",
|
|
62
|
+
"eslint-plugin-putout": "^28.0.5",
|
|
63
|
+
"madrun": "^11.0.2",
|
|
64
64
|
"mock-import": "^4.0.3",
|
|
65
65
|
"montag": "^1.2.1",
|
|
66
|
-
"putout": "^
|
|
67
|
-
"supertape": "^11.0
|
|
66
|
+
"putout": "^40.8.0",
|
|
67
|
+
"supertape": "^11.3.0"
|
|
68
68
|
}
|
|
69
69
|
}
|