wisdom 14.2.0 → 14.3.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,14 @@
1
+ 2023.10.12, v14.3.1
2
+
3
+ feature:
4
+ - be58b9b package: rendy v4.1.3
5
+
6
+ 2023.10.05, v14.3.0
7
+
8
+ feature:
9
+ - 349ecb5 package: eslint-plugin-putout v20.0.0
10
+ - 66c194f package: putout v32.2.0
11
+
1
12
  2023.08.15, v14.2.0
2
13
 
3
14
  feature:
package/bin/wisdom.js CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import {createRequire} from 'module';
3
+ import {createRequire} from 'node:module';
4
+ import process from 'node:process';
4
5
  import wisdom from '../lib/wisdom.js';
5
6
  import {choose} from '../lib/prompts.js';
6
7
 
package/lib/get-env.js CHANGED
@@ -1,3 +1,5 @@
1
+ import process from 'node:process';
2
+
1
3
  export default (version) => {
2
4
  return Object.assign(process.env, {
3
5
  wisdom_version: version,
package/lib/publish.js CHANGED
@@ -1,4 +1,4 @@
1
- import {execSync} from 'child_process';
1
+ import {execSync} from 'node:child_process';
2
2
  import getEnv from './get-env.js';
3
3
 
4
4
  export const publish = ({cwd, version}) => {
package/lib/run-wisdom.js CHANGED
@@ -1,7 +1,8 @@
1
1
  import redrun from 'redrun';
2
2
  import envir from 'envir';
3
3
  import getEnv from './get-env.js';
4
- import {execSync} from 'child_process';
4
+ import {execSync} from 'node:child_process';
5
+ import process from 'node:process';
5
6
 
6
7
  const {PATH} = process.env;
7
8
  const {cwd} = process;
package/lib/runner.js CHANGED
@@ -1,6 +1,6 @@
1
- import {promisify} from 'util';
2
- import path from 'path';
3
- import {execSync} from 'child_process';
1
+ import {promisify} from 'node:util';
2
+ import path from 'node:path';
3
+ import {execSync} from 'node:child_process';
4
4
  import tryCatch from 'try-catch';
5
5
  import tryToCatch from 'try-to-catch';
6
6
  import _prepend from 'prepend';
package/lib/wisdom.js CHANGED
@@ -1,4 +1,4 @@
1
- import path from 'path';
1
+ import path from 'node:path';
2
2
  import {EventEmitter} from 'events';
3
3
  import changelog from 'changelog-io';
4
4
  import rendy from 'rendy';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "14.2.0",
3
+ "version": "14.3.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",
@@ -44,7 +44,7 @@
44
44
  "read-pkg-up": "^10.0.0",
45
45
  "readjson": "^2.2.2",
46
46
  "redrun": "^10.0.0",
47
- "rendy": "^3.0.1",
47
+ "rendy": "^4.1.3",
48
48
  "try-catch": "^3.0.0",
49
49
  "try-to-catch": "^3.0.0",
50
50
  "version-io": "^4.0.0"
@@ -58,11 +58,11 @@
58
58
  "escover": "^3.5.2",
59
59
  "eslint": "^8.1.0",
60
60
  "eslint-plugin-n": "^16.0.1",
61
- "eslint-plugin-putout": "^19.1.0",
61
+ "eslint-plugin-putout": "^20.0.0",
62
62
  "madrun": "^9.0.2",
63
63
  "mock-import": "^3.0.2",
64
64
  "montag": "^1.2.1",
65
- "putout": "^31.2.0",
65
+ "putout": "^32.2.0",
66
66
  "supertape": "^8.3.0"
67
67
  }
68
68
  }