copymitter 10.0.0 → 10.0.2

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,13 @@
1
+ 2026.02.16, v10.0.2
2
+
3
+ feature:
4
+ - edd12fb remove unused devDependencies
5
+
6
+ 2026.02.15, v10.0.1
7
+
8
+ fix:
9
+ - fb4a5ad copymitter: named export
10
+
1
11
  2026.02.15, v10.0.0
2
12
 
3
13
  feature:
package/lib/copymitter.js CHANGED
@@ -22,7 +22,7 @@ const isString = (a) => typeof a === 'string';
22
22
 
23
23
  inherits(Copymitter, EventEmitter);
24
24
 
25
- export default (from, to, files, overrides) => {
25
+ export const copymitter = (from, to, files, overrides) => {
26
26
  check(from, to, files);
27
27
 
28
28
  return Copymitter(from, to, files, overrides);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copymitter",
3
- "version": "10.0.0",
3
+ "version": "10.0.2",
4
4
  "type": "module",
5
5
  "description": "copy files with emitter",
6
6
  "main": "lib/copymitter.js",
@@ -31,10 +31,8 @@
31
31
  "@iocmd/wait": "^2.1.0",
32
32
  "c8": "^10.1.3",
33
33
  "eslint": "^10.0.0",
34
- "eslint-plugin-node": "^11.0.0",
35
34
  "eslint-plugin-putout": "^30.0.5",
36
35
  "madrun": "^12.1.3",
37
- "mock-require": "^3.0.3",
38
36
  "nodemon": "^3.1.0",
39
37
  "pullout": "^5.0.1",
40
38
  "putout": "^41.25.1",