Skip to content

Commit a875998

Browse files
committed
2.0.0-pre.0
1 parent 388b46d commit a875998

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ $ npm install -g @hackmd/hackmd-cli
2828
$ hackmd-cli COMMAND
2929
running command...
3030
$ hackmd-cli (-v|--version|version)
31-
@hackmd/hackmd-cli/2.0.0 darwin-arm64 node-v17.5.0
31+
@hackmd/hackmd-cli/2.0.0-pre.0 darwin-x64 node-v12.21.0
3232
$ hackmd-cli --help [COMMAND]
3333
USAGE
3434
$ hackmd-cli COMMAND
@@ -157,7 +157,7 @@ EXAMPLE
157157
BnC6gN0_TfStV2KKmPPXeg Welcome to your team's workspace null CLI-test
158158
```
159159

160-
_See code: [src/commands/history.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/history.ts)_
160+
_See code: [src/commands/history.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/history.ts)_
161161

162162
## `hackmd-cli login`
163163

@@ -178,7 +178,7 @@ EXAMPLE
178178
Login successfully
179179
```
180180

181-
_See code: [src/commands/login.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/login.ts)_
181+
_See code: [src/commands/login.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/login.ts)_
182182

183183
## `hackmd-cli logout`
184184

@@ -197,7 +197,7 @@ EXAMPLE
197197
You've logged out successfully
198198
```
199199

200-
_See code: [src/commands/logout.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/logout.ts)_
200+
_See code: [src/commands/logout.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/logout.ts)_
201201

202202
## `hackmd-cli notes`
203203

@@ -215,7 +215,7 @@ OPTIONS
215215
--filter=filter filter property by partial string matching, ex: name=foo
216216
--no-header hide table header from output
217217
--no-truncate do not truncate output to fit screen
218-
--noteId=noteId hackmd note id
218+
--noteId=noteId HackMD note id
219219
--output=csv|json|yaml output in a more machine friendly format
220220
--sort=sort property to sort by (prepend '-' for descending)
221221
@@ -226,7 +226,7 @@ EXAMPLE
226226
raUuSTetT5uQbqQfLnz9lA CLI test note gvfz2UB5THiKABQJQnLs6Q null
227227
```
228228

229-
_See code: [src/commands/notes/index.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/notes/index.ts)_
229+
_See code: [src/commands/notes/index.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/notes/index.ts)_
230230

231231
## `hackmd-cli notes:create`
232232

@@ -261,7 +261,7 @@ EXAMPLES
261261
cat README.md | hackmd-cli notes create
262262
```
263263

264-
_See code: [src/commands/notes/create.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/notes/create.ts)_
264+
_See code: [src/commands/notes/create.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/notes/create.ts)_
265265

266266
## `hackmd-cli notes:delete`
267267

@@ -273,13 +273,13 @@ USAGE
273273
274274
OPTIONS
275275
-h, --help Show CLI help.
276-
--noteId=noteId hackmd note id
276+
--noteId=noteId HackMD note id
277277
278278
EXAMPLE
279279
$ hackmd-cli notes delete --noteId=WNkLM6gkS0Cg2cQ8rv7bYA
280280
```
281281

282-
_See code: [src/commands/notes/delete.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/notes/delete.ts)_
282+
_See code: [src/commands/notes/delete.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/notes/delete.ts)_
283283

284284
## `hackmd-cli notes:update`
285285

@@ -292,13 +292,13 @@ USAGE
292292
OPTIONS
293293
-h, --help Show CLI help.
294294
--content=content new note content
295-
--noteId=noteId hackmd note id
295+
--noteId=noteId HackMD note id
296296
297297
EXAMPLE
298298
$ hackmd-cli notes update --teamPath=CLI-test --noteId=WNkLM6gkS0Cg2cQ8rv7bYA --content='# A new title'
299299
```
300300

301-
_See code: [src/commands/notes/update.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/notes/update.ts)_
301+
_See code: [src/commands/notes/update.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/notes/update.ts)_
302302

303303
## `hackmd-cli team-notes`
304304

@@ -318,7 +318,7 @@ OPTIONS
318318
--no-truncate do not truncate output to fit screen
319319
--output=csv|json|yaml output in a more machine friendly format
320320
--sort=sort property to sort by (prepend '-' for descending)
321-
--teamPath=teamPath hackmd team path
321+
--teamPath=teamPath HackMD team path
322322
323323
EXAMPLE
324324
$ hackmd-cli team-notes --teamPath=CLI-test
@@ -328,7 +328,7 @@ EXAMPLE
328328
BnC6gN0_TfStV2KKmPPXeg Welcome to your team's workspace null CLI-test
329329
```
330330

331-
_See code: [src/commands/team-notes/index.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/team-notes/index.ts)_
331+
_See code: [src/commands/team-notes/index.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/team-notes/index.ts)_
332332

333333
## `hackmd-cli team-notes:create`
334334

@@ -351,7 +351,7 @@ OPTIONS
351351
--output=csv|json|yaml output in a more machine friendly format
352352
--readPermission=readPermission set note permission: owner, signed_in, guest
353353
--sort=sort property to sort by (prepend '-' for descending)
354-
--teamPath=teamPath hackmd team path
354+
--teamPath=teamPath HackMD team path
355355
--title=title new note title
356356
--writePermission=writePermission set note permission: owner, signed_in, guest
357357
@@ -365,7 +365,7 @@ EXAMPLES
365365
cat README.md | hackmd-cli notes create --teamPath=CLI-test
366366
```
367367

368-
_See code: [src/commands/team-notes/create.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/team-notes/create.ts)_
368+
_See code: [src/commands/team-notes/create.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/team-notes/create.ts)_
369369

370370
## `hackmd-cli team-notes:delete`
371371

@@ -377,14 +377,14 @@ USAGE
377377
378378
OPTIONS
379379
-h, --help Show CLI help.
380-
--noteId=noteId hackmd note id
381-
--teamPath=teamPath hackmd team path
380+
--noteId=noteId HackMD note id
381+
--teamPath=teamPath HackMD team path
382382
383383
EXAMPLE
384384
$ hackmd-cli team-notes delete --teamPath=CLI-test --noteId=WNkLM6gkS0Cg2cQ8rv7bYA
385385
```
386386

387-
_See code: [src/commands/team-notes/delete.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/team-notes/delete.ts)_
387+
_See code: [src/commands/team-notes/delete.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/team-notes/delete.ts)_
388388

389389
## `hackmd-cli team-notes:update`
390390

@@ -397,14 +397,14 @@ USAGE
397397
OPTIONS
398398
-h, --help Show CLI help.
399399
--content=content new note content
400-
--noteId=noteId hackmd note id
401-
--teamPath=teamPath hackmd team path
400+
--noteId=noteId HackMD note id
401+
--teamPath=teamPath HackMD team path
402402
403403
EXAMPLE
404404
$ hackmd-cli team-notes update --teamPath=CLI-test --noteId=WNkLM6gkS0Cg2cQ8rv7bYA --content='# A new title'
405405
```
406406

407-
_See code: [src/commands/team-notes/update.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/team-notes/update.ts)_
407+
_See code: [src/commands/team-notes/update.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/team-notes/update.ts)_
408408

409409
## `hackmd-cli teams`
410410

@@ -432,7 +432,7 @@ EXAMPLE
432432
f76308a6-d77a-41f6-86d0-8ada426a6fb4 CLI test team CLI-test 82f7f3d9-4079-4c78-8a00-14094272ece9
433433
```
434434

435-
_See code: [src/commands/teams.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/teams.ts)_
435+
_See code: [src/commands/teams.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/teams.ts)_
436436

437437
## `hackmd-cli version`
438438

@@ -469,7 +469,7 @@ EXAMPLE
469469
82f7f3d9-4079-4c78-8a00-14094272ece9 Ming-Hsiu Tsai null gvfz2UB5THiKABQJQnLs6Q
470470
```
471471

472-
_See code: [src/commands/whoami.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0/src/commands/whoami.ts)_
472+
_See code: [src/commands/whoami.ts](https://github.com/hackmdio/hackmd-cli/blob/v2.0.0-pre.0/src/commands/whoami.ts)_
473473
<!-- commandsstop -->
474474

475475
## License

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hackmd/hackmd-cli",
3-
"version": "2.0.0",
3+
"version": "2.0.0-pre.0",
44
"author": "HackMD Team",
55
"bin": {
66
"hackmd-cli": "./bin/run"

0 commit comments

Comments
 (0)