File tree 4 files changed +25
-26
lines changed
4 files changed +25
-26
lines changed Original file line number Diff line number Diff line change 1
1
# fs-cli
2
2
3
- A deno tool to handle directories a files. Inspired by [ rimraf] ( https://www.npmjs.com/package/rimraf ) and mkdirp [ mkdirp] ( https://www.npmjs.com/package/mkdirp ) , fs-cli aims to write build scripts that can run under any shells .
3
+ A deno tool to handle directories and files through script . Inspired by [ rimraf] ( https://www.npmjs.com/package/rimraf ) and mkdirp [ mkdirp] ( https://www.npmjs.com/package/mkdirp ) , fs-cli aims to write build scripts that can run under any shell .
4
4
5
5
[ ![ deno land] ( http://img.shields.io/badge/available%20on-deno.land/x-lightgrey.svg?logo=deno&labelColor=black )] ( https://deno.land/x/fs_cli )
6
6
[ ![ license] ( https://img.shields.io/badge/license-MIT-green )] ( https://github.com/franckLdx/fs_cli/blob/master/LICENSE )
@@ -148,38 +148,37 @@ Made with [Cliffy](https://deno.land/x/cliffy) and [Cli_badges](https://deno.lan
148
148
149
149
150
150
# What's new
151
+ fs_cli uses recent std lib but it is tested with deno 1.3.x, 1.4.x, 1.5.x and 1.6.x
152
+
153
+ ## 0.7.8
154
+ * use std lib 0.81.0
155
+
151
156
## 0.7.7
152
- * use deno 1.5.4
153
- * use lib std 0.79.0
157
+ * use std lib 0.79.0
154
158
155
159
## 0.7.6
156
160
* Set for testing new Deno third parties repo management
157
161
158
162
## 0.7.5
159
- * use deno 1.5.1
160
- * use lib std 0.76.0
163
+ * use std lib 0.76.0
161
164
162
165
## 0.7.4
163
- * use deno 1.4.5
164
- * use lib std 0.74.0
166
+ * use std lib 0.74.0
165
167
166
168
## 0.7.3
167
- * use deno 1.4.4
168
- * use lib std 0.73.0
169
+ * use std lib 0.73.0
169
170
170
171
## 0.7.2
171
- * use deno 1.3.2
172
- * use lib std 0.6.0
172
+ * use std lib 0.6.0
173
173
* use cliffy 0.13.0
174
174
175
175
## 0.7.1
176
- * use deno 1.2.0
177
- * use lib std 0.61.0
176
+ * use std lib 0.61.0
178
177
* use cliffy 0.11.0
179
178
180
179
## 0.7.0
181
180
* Added empty command
182
- * use lib std 0.59.0
181
+ * use std lib 0.59.0
183
182
184
183
## 0.6.0
185
184
* cp command now supports glob options
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { addEmptyDirCommand } from "./lib/emptyDir.ts";
7
7
8
8
const command = new Command ( )
9
9
. description ( "fs_cli tools: handle files through command line" )
10
- . version ( "0.7.7 " ) ;
10
+ . version ( "0.7.8 " ) ;
11
11
12
12
addGlobalOptions ( command ) ;
13
13
Original file line number Diff line number Diff line change 1
1
export {
2
2
assert ,
3
- } from "https://deno.land/std@0.79 .0/testing/asserts.ts" ;
3
+ } from "https://deno.land/std@0.81 .0/testing/asserts.ts" ;
4
4
5
5
export {
6
6
ensureDir as denoEnsureDir ,
7
7
copy as denoCopy ,
8
8
exists ,
9
9
walk ,
10
10
emptyDir as denoEmptyDir ,
11
- } from "https://deno.land/std@0.79 .0/fs/mod.ts" ;
11
+ } from "https://deno.land/std@0.81 .0/fs/mod.ts" ;
12
12
13
13
export type {
14
14
CopyOptions as DenoCopyOptions
15
- } from "https://deno.land/std@0.79 .0/fs/mod.ts" ;
15
+ } from "https://deno.land/std@0.81 .0/fs/mod.ts" ;
16
16
17
17
export {
18
18
isGlob ,
@@ -21,22 +21,22 @@ export {
21
21
dirname ,
22
22
basename ,
23
23
SEP ,
24
- } from "https://deno.land/std@0.79 .0/path/mod.ts" ;
24
+ } from "https://deno.land/std@0.81 .0/path/mod.ts" ;
25
25
26
26
export {
27
27
setup as setupLogger ,
28
28
getLogger ,
29
29
LoggerConfig ,
30
30
handlers ,
31
- } from "https://deno.land/std@0.79 .0/log/mod.ts" ;
31
+ } from "https://deno.land/std@0.81 .0/log/mod.ts" ;
32
32
export {
33
33
Logger ,
34
34
LogRecord ,
35
- } from "https://deno.land/std@0.79 .0/log/logger.ts" ;
35
+ } from "https://deno.land/std@0.81 .0/log/logger.ts" ;
36
36
37
- export { BaseHandler } from "https://deno.land/std@0.79 .0/log/handlers.ts" ;
37
+ export { BaseHandler } from "https://deno.land/std@0.81 .0/log/handlers.ts" ;
38
38
39
- export { getLevelByName } from "https://deno.land/std@0.79 .0/log/levels.ts" ;
39
+ export { getLevelByName } from "https://deno.land/std@0.81 .0/log/levels.ts" ;
40
40
41
41
export {
42
42
Command ,
Original file line number Diff line number Diff line change 1
1
export {
2
2
assert ,
3
3
assertEquals ,
4
- } from "https://deno.land/std@0.79 .0/testing/asserts.ts" ;
4
+ } from "https://deno.land/std@0.81 .0/testing/asserts.ts" ;
5
5
6
6
export {
7
7
ensureDir ,
8
8
ensureFile ,
9
- } from "https://deno.land/std@0.79 .0/fs/mod.ts" ;
9
+ } from "https://deno.land/std@0.81 .0/fs/mod.ts" ;
10
10
11
- export { green , red , blue } from "https://deno.land/std@0.79 .0/fmt/colors.ts" ;
11
+ export { green , red , blue } from "https://deno.land/std@0.81 .0/fmt/colors.ts" ;
You can’t perform that action at this time.
0 commit comments