Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Aug 25, 2020
0 parents commit 0202b56
Show file tree
Hide file tree
Showing 28 changed files with 5,616 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/lib
6 changes: 6 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": [
"oclif",
"oclif-typescript"
]
}
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*-debug.log
*-error.log
/.nyc_output
/dist
/lib
/tmp
/yarn.lock
node_modules
/syntax/
70 changes: 70 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
lift
====



[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
[![Version](https://img.shields.io/npm/v/lift.svg)](https://npmjs.org/package/lift)
[![Downloads/week](https://img.shields.io/npm/dw/lift.svg)](https://npmjs.org/package/lift)
[![License](https://img.shields.io/npm/l/lift.svg)](https://github.com/mnapoli/lift/blob/master/package.json)

<!-- toc -->
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
# Usage
<!-- usage -->
```sh-session
$ npm install -g lift
$ lift COMMAND
running command...
$ lift (-v|--version|version)
lift/0.0.0 darwin-x64 node-v14.7.0
$ lift --help [COMMAND]
USAGE
$ lift COMMAND
...
```
<!-- usagestop -->
# Commands
<!-- commands -->
* [`lift hello [FILE]`](#lift-hello-file)
* [`lift help [COMMAND]`](#lift-help-command)

## `lift hello [FILE]`

describe the command here

```
USAGE
$ lift hello [FILE]
OPTIONS
-f, --force
-h, --help show CLI help
-n, --name=name name to print
EXAMPLE
$ lift hello
hello world from ./src/hello.ts!
```

_See code: [src/commands/hello.ts](https://github.com/mnapoli/lift/blob/v0.0.0/src/commands/hello.ts)_

## `lift help [COMMAND]`

display help for lift

```
USAGE
$ lift help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.0/src/commands/help.ts)_
<!-- commandsstop -->
5 changes: 5 additions & 0 deletions bin/run
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env node

require('@oclif/command').run()
.then(require('@oclif/command/flush'))
.catch(require('@oclif/errors/handle'))
3 changes: 3 additions & 0 deletions bin/run.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off

node "%~dp0\run" %*
Loading

0 comments on commit 0202b56

Please sign in to comment.