copy-file-util 1.2.2 → 1.2.3

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/README.md CHANGED
@@ -90,7 +90,7 @@ const result = copyFile.cp('src/web/api.html' { targetFile: 'docs/api-manual.htm
90
90
  console.log('Execution time:', result.duration, 'ms');
91
91
  ```
92
92
 
93
- See the **TypeScript Declarations** at the top of [copy-file.ts](copy-file.ts) for documentation.
93
+ See the **TypeScript Declarations** at the top of [copy-file.ts](src/copy-file.ts) for documentation.
94
94
 
95
95
  <br>
96
96
 
@@ -1,4 +1,4 @@
1
- //! copy-file-util v1.2.2 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
1
+ //! copy-file-util v1.2.3 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
2
2
 
3
3
  export type Settings = {
4
4
  cd: string;
package/dist/copy-file.js CHANGED
@@ -1,4 +1,4 @@
1
- //! copy-file-util v1.2.2 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
1
+ //! copy-file-util v1.2.3 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
2
2
 
3
3
  import chalk from 'chalk';
4
4
  import fs from 'fs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copy-file-util",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Copy or rename a file with optional package version number (CLI tool designed for use in npm package.json scripts)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -75,7 +75,7 @@
75
75
  "mocha": "~11.1",
76
76
  "rimraf": "~6.0",
77
77
  "run-scripts-util": "~1.3",
78
- "typescript": "~5.7",
79
- "typescript-eslint": "~8.25"
78
+ "typescript": "~5.8",
79
+ "typescript-eslint": "~8.26"
80
80
  }
81
81
  }