wisdom 15.1.0 → 15.2.1
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/bin/wisdom.js +1 -3
- package/lib/prompts.js +1 -1
- package/lib/run-wisdom.js +2 -2
- package/package.json +7 -8
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2025.02.12, v15.2.1
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 6712fb5 wisdom: eslint-plugin-putout v24.0.3
|
|
5
|
+
- b458162 wisdom: envir v3.0.1
|
|
6
|
+
- 710d0da wisdom: putout v38.1.2
|
|
7
|
+
|
|
8
|
+
2024.07.18, v15.2.0
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- d56aa1f wisdom: putout v36.0.1
|
|
12
|
+
- 95a1b06 wisdom: c8 v10.1.2
|
|
13
|
+
- 752a044 wisdom: eslint v9.3.0
|
|
14
|
+
|
|
1
15
|
2024.03.15, v15.1.0
|
|
2
16
|
|
|
3
17
|
feature:
|
package/bin/wisdom.js
CHANGED
package/lib/prompts.js
CHANGED
|
@@ -11,7 +11,7 @@ export const choose = async () => {
|
|
|
11
11
|
'major',
|
|
12
12
|
];
|
|
13
13
|
|
|
14
|
-
return await chooseCLI('What type of changes are you
|
|
14
|
+
return await chooseCLI('What type of changes are you going to publish 🎁 ?', choices);
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
export const ask = async (name, version) => {
|
package/lib/run-wisdom.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import {execSync} from 'node:child_process';
|
|
2
|
+
import process from 'node:process';
|
|
1
3
|
import redrun from 'redrun';
|
|
2
4
|
import envir from 'envir';
|
|
3
5
|
import getEnv from './get-env.js';
|
|
4
|
-
import {execSync} from 'node:child_process';
|
|
5
|
-
import process from 'node:process';
|
|
6
6
|
|
|
7
7
|
const {PATH} = process.env;
|
|
8
8
|
const {cwd} = process;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wisdom",
|
|
3
|
-
"version": "15.1
|
|
3
|
+
"version": "15.2.1",
|
|
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",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "git://github.com/coderaiser/wisdom.git"
|
|
32
|
+
"url": "git+https://github.com/coderaiser/wisdom.git"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@putout/cli-choose": "^2.0.0",
|
|
36
36
|
"changelog-io": "^9.0.0",
|
|
37
37
|
"currify": "^4.0.0",
|
|
38
38
|
"enquirer": "^2.3.6",
|
|
39
|
-
"envir": "^
|
|
39
|
+
"envir": "^3.0.1",
|
|
40
40
|
"fullstore": "^3.0.0",
|
|
41
41
|
"grizzly": "^6.0.0",
|
|
42
42
|
"jessy": "^3.0.0",
|
|
@@ -55,15 +55,14 @@
|
|
|
55
55
|
"node": ">=18"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"c8": "^
|
|
58
|
+
"c8": "^10.1.2",
|
|
59
59
|
"escover": "^4.1.0",
|
|
60
|
-
"eslint": "^
|
|
61
|
-
"eslint-plugin-
|
|
62
|
-
"eslint-plugin-putout": "^22.3.1",
|
|
60
|
+
"eslint": "^9.3.0",
|
|
61
|
+
"eslint-plugin-putout": "^24.0.3",
|
|
63
62
|
"madrun": "^10.0.1",
|
|
64
63
|
"mock-import": "^4.0.3",
|
|
65
64
|
"montag": "^1.2.1",
|
|
66
|
-
"putout": "^
|
|
65
|
+
"putout": "^38.1.2",
|
|
67
66
|
"supertape": "^10.0.0"
|
|
68
67
|
}
|
|
69
68
|
}
|