Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jun 19, 2023
1 parent e7769d2 commit 4e58937
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Even though **copy-file-util** is primarily intended for build scripts, the pack
Example:
``` typescript
import { copyFile } from 'copy-file-util';

const result = copyFile.cp('src/web/api.html' { targetFile: 'docs/api-manual.html' });
console.log('Execution time:', result.duration, 'ms');
```
Expand Down
2 changes: 1 addition & 1 deletion dist/copy-file.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! copy-file-util v1.0.0 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
//! copy-file-util v1.0.1 ~~ https://github.com/center-key/copy-file-util ~~ MIT License

export type Settings = {
cd: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/copy-file.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! copy-file-util v1.0.0 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
//! copy-file-util v1.0.1 ~~ https://github.com/center-key/copy-file-util ~~ MIT License

import fs from 'fs';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion dist/copy-file.umd.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! copy-file-util v1.0.0 ~~ https://github.com/center-key/copy-file-util ~~ MIT License
//! copy-file-util v1.0.1 ~~ https://github.com/center-key/copy-file-util ~~ MIT License

var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "copy-file-util",
"version": "1.0.0",
"version": "1.0.1",
"description": "Copy or rename a file with optional package version number (CLI tool designed for use in npm scripts)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -83,23 +83,23 @@
"dependencies": {
"chalk": "~5.2",
"cli-argv-util": "~1.0",
"dna-engine": "~2.3",
"dna-engine": "~3.0",
"fancy-log": "~2.0",
"slash": "~5.0"
"slash": "~5.1"
},
"devDependencies": {
"@types/fancy-log": "~2.0",
"@types/node": "~18.15",
"@typescript-eslint/eslint-plugin": "~5.57",
"@typescript-eslint/parser": "~5.57",
"@types/node": "~20.3",
"@typescript-eslint/eslint-plugin": "~5.59",
"@typescript-eslint/parser": "~5.59",
"add-dist-header": "~1.0",
"assert-deep-strict-equal": "~1.0",
"cpy-cli": "~4.2",
"eslint": "~8.37",
"eslint": "~8.43",
"jshint": "~2.13",
"mocha": "~10.2",
"rimraf": "~4.4",
"rimraf": "~5.0",
"run-scripts-util": "~1.1",
"typescript": "~5.0"
"typescript": "~5.1"
}
}

0 comments on commit 4e58937

Please sign in to comment.