copy-folder-util 0.2.3 → 0.2.4
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/bin/cli.js +1 -1
- package/dist/copy-folder.d.ts +1 -1
- package/dist/copy-folder.js +1 -1
- package/dist/copy-folder.umd.cjs +1 -1
- package/package.json +2 -2
package/bin/cli.js
CHANGED
|
@@ -37,7 +37,7 @@ const printReport = (results) => {
|
|
|
37
37
|
const name = chalk.gray('copy-folder');
|
|
38
38
|
const source = chalk.blue.bold(results.source);
|
|
39
39
|
const target = chalk.magenta(results.target);
|
|
40
|
-
const arrow = { big: chalk.gray.bold('
|
|
40
|
+
const arrow = { big: chalk.gray.bold(' ⟹ '), little: chalk.gray.bold('→') };
|
|
41
41
|
const infoColor = results.count ? chalk.white : chalk.red.bold;
|
|
42
42
|
const info = infoColor(`(files: ${results.count}, ${results.duration}ms)`);
|
|
43
43
|
const logFile = (file) => log(name, chalk.white(file.origin), arrow.little, chalk.green(file.dest));
|
package/dist/copy-folder.d.ts
CHANGED
package/dist/copy-folder.js
CHANGED
package/dist/copy-folder.umd.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//! copy-folder-util v0.2.
|
|
1
|
+
//! copy-folder-util v0.2.4 ~~ https://github.com/center-key/copy-folder-util ~~ MIT License
|
|
2
2
|
|
|
3
3
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "copy-folder-util",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Recursively copy files from one folder to another folder (CLI tool designed for use in npm scripts)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"add-dist-header": "~0.3",
|
|
96
96
|
"assert-deep-strict-equal": "~1.0",
|
|
97
97
|
"copy-file-util": "~0.1",
|
|
98
|
-
"eslint": "~8.
|
|
98
|
+
"eslint": "~8.28",
|
|
99
99
|
"jshint": "~2.13",
|
|
100
100
|
"mocha": "~10.1",
|
|
101
101
|
"rev-web-assets": "~0.1",
|