-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22179ec
commit aed470b
Showing
234 changed files
with
26,915 additions
and
9,687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dist/ | ||
tmp/ | ||
coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,3 +71,6 @@ typings/ | |
#Intelij Idea | ||
*.iml | ||
.idea | ||
|
||
# Oclif Build files | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"inputs": ["./package.json"], | ||
"output": "./LICENSE-THIRD-PARTY.txt", | ||
"lineEnding": "lf", | ||
"replace": { | ||
"[email protected]": "./LICENSE.MIT", | ||
"[email protected]": "./LICENSE.MIT" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
recursive: true | ||
timeout: '10000' | ||
reporter: 'spec' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": true, | ||
"singleQuote": true | ||
} | ||
"@oclif/prettier-config" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/usr/bin/env node | ||
|
||
require('@oclif/command').run() | ||
.then(require('@oclif/command/flush')) | ||
.catch(require('@oclif/errors/handle')) | ||
const { handle } = require('@oclif/core/errors'); | ||
const flush = require('@oclif/core/flush'); | ||
|
||
require('@oclif/core').run() | ||
.then(flush) | ||
.catch(handle); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
`box version` | ||
============= | ||
|
||
|
||
|
||
* [`box version`](#box-version) | ||
|
||
## `box version` | ||
|
||
``` | ||
USAGE | ||
$ box version [--json] [--verbose] | ||
FLAGS | ||
--verbose Show additional information about the CLI. | ||
GLOBAL FLAGS | ||
--json Format output as json. | ||
FLAG DESCRIPTIONS | ||
--verbose Show additional information about the CLI. | ||
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using. | ||
``` | ||
|
||
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.16/src/commands/version.js)_ |
Oops, something went wrong.