wisdom 15.2.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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  2024.07.18, v15.2.0
2
9
 
3
10
  feature:
package/bin/wisdom.js CHANGED
@@ -55,9 +55,7 @@ function version() {
55
55
  console.log('v' + info().version);
56
56
  }
57
57
 
58
- function info() {
59
- return require('../package.json');
60
- }
58
+ const info = () => require('../package.json');
61
59
 
62
60
  function help() {
63
61
  const bin = require('../json/bin.json');
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.2.0",
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": "^2.0.0",
39
+ "envir": "^3.0.1",
40
40
  "fullstore": "^3.0.0",
41
41
  "grizzly": "^6.0.0",
42
42
  "jessy": "^3.0.0",
@@ -58,11 +58,11 @@
58
58
  "c8": "^10.1.2",
59
59
  "escover": "^4.1.0",
60
60
  "eslint": "^9.3.0",
61
- "eslint-plugin-putout": "^22.3.1",
61
+ "eslint-plugin-putout": "^24.0.3",
62
62
  "madrun": "^10.0.1",
63
63
  "mock-import": "^4.0.3",
64
64
  "montag": "^1.2.1",
65
- "putout": "^36.0.1",
65
+ "putout": "^38.1.2",
66
66
  "supertape": "^10.0.0"
67
67
  }
68
68
  }