copy-folder-util 0.2.4 → 1.0.0
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/LICENSE.txt +1 -1
- package/README.md +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 +11 -11
package/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2022 Individual contributors to copy-folder-util
|
|
3
|
+
Copyright (c) 2022-2023 Individual contributors to copy-folder-util
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ $ npm install --global copy-folder-util
|
|
|
45
45
|
$ copy-folder src/web ext=.html docs/api-manual
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
### 3. CLI
|
|
48
|
+
### 3. CLI flags
|
|
49
49
|
Command-line flags:
|
|
50
50
|
| Flag | Description | Value |
|
|
51
51
|
| ------------ | ----------------------------------------------------- | ---------- |
|
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
|
|
1
|
+
//! copy-folder-util v1.0.0 ~~ 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.
|
|
3
|
+
"version": "1.0.0",
|
|
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",
|
|
@@ -82,24 +82,24 @@
|
|
|
82
82
|
"test": "mocha spec/*.spec.js"
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"chalk": "~5.
|
|
86
|
-
"cli-argv-util": "~0
|
|
85
|
+
"chalk": "~5.2",
|
|
86
|
+
"cli-argv-util": "~1.0",
|
|
87
87
|
"fancy-log": "~2.0",
|
|
88
88
|
"slash": "~5.0"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@types/fancy-log": "~2.0",
|
|
92
|
-
"@types/node": "~18.
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
94
|
-
"@typescript-eslint/parser": "~5.
|
|
95
|
-
"add-dist-header": "~0
|
|
92
|
+
"@types/node": "~18.14",
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "~5.52",
|
|
94
|
+
"@typescript-eslint/parser": "~5.52",
|
|
95
|
+
"add-dist-header": "~1.0",
|
|
96
96
|
"assert-deep-strict-equal": "~1.0",
|
|
97
|
-
"copy-file-util": "~0
|
|
98
|
-
"eslint": "~8.
|
|
97
|
+
"copy-file-util": "~1.0",
|
|
98
|
+
"eslint": "~8.34",
|
|
99
99
|
"jshint": "~2.13",
|
|
100
|
-
"mocha": "~10.
|
|
100
|
+
"mocha": "~10.2",
|
|
101
101
|
"rev-web-assets": "~0.1",
|
|
102
|
-
"rimraf": "
|
|
102
|
+
"rimraf": "3",
|
|
103
103
|
"run-scripts-util": "~0.1",
|
|
104
104
|
"typescript": "~4.9"
|
|
105
105
|
}
|