Skip to content

Commit 668702e

Browse files
committed
use std 0.81.0
1 parent b527df7 commit 668702e

File tree

4 files changed

+25
-26
lines changed

4 files changed

+25
-26
lines changed

README.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# fs-cli
22

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.
44

55
[![deno land](http://img.shields.io/badge/available%20on-deno.land/x-lightgrey.svg?logo=deno&labelColor=black)](https://deno.land/x/fs_cli)
66
[![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
148148

149149

150150
# 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+
151156
## 0.7.7
152-
* use deno 1.5.4
153-
* use lib std 0.79.0
157+
* use std lib 0.79.0
154158

155159
## 0.7.6
156160
* Set for testing new Deno third parties repo management
157161

158162
## 0.7.5
159-
* use deno 1.5.1
160-
* use lib std 0.76.0
163+
* use std lib 0.76.0
161164

162165
## 0.7.4
163-
* use deno 1.4.5
164-
* use lib std 0.74.0
166+
* use std lib 0.74.0
165167

166168
## 0.7.3
167-
* use deno 1.4.4
168-
* use lib std 0.73.0
169+
* use std lib 0.73.0
169170

170171
## 0.7.2
171-
* use deno 1.3.2
172-
* use lib std 0.6.0
172+
* use std lib 0.6.0
173173
* use cliffy 0.13.0
174174

175175
## 0.7.1
176-
* use deno 1.2.0
177-
* use lib std 0.61.0
176+
* use std lib 0.61.0
178177
* use cliffy 0.11.0
179178

180179
## 0.7.0
181180
* Added empty command
182-
* use lib std 0.59.0
181+
* use std lib 0.59.0
183182

184183
## 0.6.0
185184
* cp command now supports glob options

cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { addEmptyDirCommand } from "./lib/emptyDir.ts";
77

88
const command = new Command()
99
.description("fs_cli tools: handle files through command line")
10-
.version("0.7.7");
10+
.version("0.7.8");
1111

1212
addGlobalOptions(command);
1313

deps.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
export {
22
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";
44

55
export {
66
ensureDir as denoEnsureDir,
77
copy as denoCopy,
88
exists,
99
walk,
1010
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";
1212

1313
export type {
1414
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";
1616

1717
export {
1818
isGlob,
@@ -21,22 +21,22 @@ export {
2121
dirname,
2222
basename,
2323
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";
2525

2626
export {
2727
setup as setupLogger,
2828
getLogger,
2929
LoggerConfig,
3030
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";
3232
export {
3333
Logger,
3434
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";
3636

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";
3838

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";
4040

4141
export {
4242
Command,

dev_deps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export {
22
assert,
33
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";
55

66
export {
77
ensureDir,
88
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";
1010

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";

0 commit comments

Comments
 (0)