madrun 10.1.0 → 10.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,14 @@
1
+ 2024.09.25, v10.2.1
2
+
3
+ fix:
4
+ - 5c2a655 madrun: prepare
5
+
6
+ 2024.09.25, v10.2.0
7
+
8
+ feature:
9
+ - 1760b28 madrun: eslint-plugin-putout v23.1.0
10
+ - 886aa46 madrun: avoid pre
11
+
1
12
  2024.07.16, v10.1.0
2
13
 
3
14
  feature:
package/bin/init.mjs CHANGED
@@ -58,6 +58,9 @@ function updatePackage(scripts) {
58
58
  const result = {};
59
59
 
60
60
  for (const key of keys(scripts)) {
61
+ if (key.startsWith('pre') && key !== 'prepare')
62
+ continue;
63
+
61
64
  result[key] = `madrun ${key}`;
62
65
  }
63
66
 
package/lib/madrun.js CHANGED
@@ -16,6 +16,7 @@ async function getFindUp() {
16
16
  return global.MADRUN_FINDUP;
17
17
 
18
18
  const {findUpSync} = await import('find-up');
19
+
19
20
  return findUpSync;
20
21
  }
21
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "madrun",
3
- "version": "10.1.0",
3
+ "version": "10.2.1",
4
4
  "description": "CLI tool to run multiple npm-scripts in a madly comfortable way",
5
5
  "main": "lib/madrun.js",
6
6
  "type": "commonjs",
@@ -72,7 +72,7 @@
72
72
  "c8": "^10.1.2",
73
73
  "escover": "^4.0.0",
74
74
  "eslint": "^9.7.0",
75
- "eslint-plugin-putout": "^22.3.0",
75
+ "eslint-plugin-putout": "^23.1.0",
76
76
  "mock-import": "^4.0.2",
77
77
  "mock-require": "^3.0.3",
78
78
  "nodemon": "^3.0.1",