wisdom 15.2.1 → 15.3.0

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
+ 2025.03.06, v15.3.0
2
+
3
+ feature:
4
+ - 40c0dd0 publish: --tag latest: add
5
+
6
+ 2025.03.06, v15.2.2
7
+
8
+ feature:
9
+ - b9b79a2 wisdom: eslint-plugin-putout v25.0.3
10
+ - ae60a4d wisdom: jessy v4.1.0
11
+
1
12
  2025.02.12, v15.2.1
2
13
 
3
14
  feature:
package/lib/publish.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import {execSync} from 'node:child_process';
2
2
  import getEnv from './get-env.js';
3
3
 
4
- export const publish = ({cwd, version}) => {
5
- execute(`npm publish`, version, cwd);
4
+ export const publish = ({cwd, version, execute = _execute}) => {
5
+ execute(`npm publish --tag latest`, version, cwd);
6
6
  };
7
7
 
8
- function execute(cmd, version, cwd) {
8
+ function _execute(cmd, version, cwd) {
9
9
  const stdio = [
10
10
  0,
11
11
  1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wisdom",
3
- "version": "15.2.1",
3
+ "version": "15.3.0",
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",
@@ -39,7 +39,7 @@
39
39
  "envir": "^3.0.1",
40
40
  "fullstore": "^3.0.0",
41
41
  "grizzly": "^6.0.0",
42
- "jessy": "^3.0.0",
42
+ "jessy": "^4.1.0",
43
43
  "minor": "^1.2.0",
44
44
  "prepend": "^1.0.1",
45
45
  "read-package-up": "^11.0.0",
@@ -58,7 +58,7 @@
58
58
  "c8": "^10.1.2",
59
59
  "escover": "^4.1.0",
60
60
  "eslint": "^9.3.0",
61
- "eslint-plugin-putout": "^24.0.3",
61
+ "eslint-plugin-putout": "^25.0.3",
62
62
  "madrun": "^10.0.1",
63
63
  "mock-import": "^4.0.3",
64
64
  "montag": "^1.2.1",