Skip to content

Commit 1cb3f5d

Browse files
committed
バイナリ型に対応
1 parent c58d9d9 commit 1cb3f5d

File tree

7 files changed

+221
-109
lines changed

7 files changed

+221
-109
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $ npm install -g ketool
2020
$ ketool COMMAND
2121
running command...
2222
$ ketool (--version)
23-
ketool/0.0.0 linux-x64 node-v20.18.0
23+
ketool/0.1.1 linux-x64 node-v20.18.0
2424
$ ketool --help [COMMAND]
2525
USAGE
2626
$ ketool COMMAND
@@ -61,7 +61,7 @@ Create the directories, if they do not already exist.
6161

6262
```
6363
USAGE
64-
$ ketool mkdir DIRECTORY... [-u <value>] [-t <value>] [-k] [-c <value>] [-p] [-v]
64+
$ ketool mkdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]
6565
6666
ARGUMENTS
6767
DIRECTORY... path of the directory to be created
@@ -81,15 +81,15 @@ EXAMPLES
8181
$ ketool mkdir
8282
```
8383

84-
_See code: [src/commands/mkdir.ts](https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/mkdir.ts)_
84+
_See code: [src/commands/mkdir.ts](https://github.com/fixpoint/ketool/blob/v0.1.1/src/commands/mkdir.ts)_
8585

8686
## `ketool put SOURCE`
8787

8888
put files or directories to Kompira server
8989

9090
```
9191
USAGE
92-
$ ketool put SOURCE... [-u <value>] [-t <value>] [-k] [-d <value>] [-c <value>] [-r] [-o] [-v]
92+
$ ketool put SOURCE... [-u <value>] [-k] [-t <value>] [-c <value>] [-d <value>] [-o] [-r] [-v]
9393
9494
ARGUMENTS
9595
SOURCE... source file or directory
@@ -111,15 +111,15 @@ EXAMPLES
111111
$ ketool put
112112
```
113113

114-
_See code: [src/commands/put.ts](https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/put.ts)_
114+
_See code: [src/commands/put.ts](https://github.com/fixpoint/ketool/blob/v0.1.1/src/commands/put.ts)_
115115

116116
## `ketool rm OBJECT`
117117

118118
Remove the directories, if they are empty.
119119

120120
```
121121
USAGE
122-
$ ketool rm OBJECT... [-u <value>] [-t <value>] [-k] [-c <value>] [-f] [-r] [-v]
122+
$ ketool rm OBJECT... [-u <value>] [-k] [-t <value>] [-c <value>] [-f] [-r] [-v]
123123
124124
ARGUMENTS
125125
OBJECT... path of the object to be removed
@@ -140,15 +140,15 @@ EXAMPLES
140140
$ ketool rm
141141
```
142142

143-
_See code: [src/commands/rm.ts](https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/rm.ts)_
143+
_See code: [src/commands/rm.ts](https://github.com/fixpoint/ketool/blob/v0.1.1/src/commands/rm.ts)_
144144

145145
## `ketool rmdir DIRECTORY`
146146

147147
Remove the directories, if they are empty.
148148

149149
```
150150
USAGE
151-
$ ketool rmdir DIRECTORY... [-u <value>] [-t <value>] [-k] [-c <value>] [-p] [-v]
151+
$ ketool rmdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]
152152
153153
ARGUMENTS
154154
DIRECTORY... path of the directory to be removed
@@ -168,5 +168,5 @@ EXAMPLES
168168
$ ketool rmdir
169169
```
170170

171-
_See code: [src/commands/rmdir.ts](https://github.com/fixpoint/ketool/blob/v0.0.0/src/commands/rmdir.ts)_
171+
_See code: [src/commands/rmdir.ts](https://github.com/fixpoint/ketool/blob/v0.1.1/src/commands/rmdir.ts)_
172172
<!-- commandsstop -->

package-lock.json

Lines changed: 88 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ketool",
33
"description": "Development tools for Kompira Enterprise",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"author": "Kenta HATTORI",
66
"bin": {
77
"ketool": "./bin/run.js"
@@ -11,6 +11,7 @@
1111
"@oclif/core": "^4",
1212
"@oclif/plugin-help": "^6",
1313
"config": "^3.3.12",
14+
"istextorbinary": "^9.5.0",
1415
"mime-types": "^2.1.35",
1516
"typed-rest-client": "^2.1.0"
1617
},
@@ -19,6 +20,7 @@
1920
"@oclif/test": "^4",
2021
"@types/chai": "^4",
2122
"@types/config": "^3.3.5",
23+
"@types/istextorbinary": "^2.3.4",
2224
"@types/mime-types": "^2.1.4",
2325
"@types/mocha": "^10",
2426
"@types/node": "^18",

0 commit comments

Comments
 (0)