Skip to content

Commit

Permalink
Update descriptions that get generated for README
Browse files Browse the repository at this point in the history
  • Loading branch information
timhaines committed May 21, 2019
1 parent 4b6ca80 commit 7ad25c0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g @percy/agent
$ percy COMMAND
running command...
$ percy (-v|--version|version)
@percy/agent/0.4.7 linux-x64 node-v10.15.3
@percy/agent/0.4.8 linux-x64 node-v10.15.3
$ percy --help [COMMAND]
USAGE
$ percy COMMAND
Expand All @@ -35,7 +35,7 @@ USAGE

## `percy exec`

Start and stop Percy around a supplied command.
Start and stop Percy around a supplied command

```
USAGE
Expand All @@ -52,7 +52,7 @@ EXAMPLES

## `percy finalize`

Finalize a build. Commonly used for parallelized builds, especially when the number of parallelized processes is unknown.
finalize a build

```
USAGE
Expand All @@ -68,7 +68,7 @@ EXAMPLE

## `percy help [COMMAND]`

Display help for percy.
display help for percy

```
USAGE
Expand All @@ -85,7 +85,7 @@ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.1.6

## `percy snapshot SNAPSHOTDIRECTORY`

Snapshot a directory containing a pre-built static website.
Snapshot a directory containing a pre-built static website

```
USAGE
Expand Down
2 changes: 1 addition & 1 deletion src/commands/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Constants from '../services/constants'
import PercyCommand from './percy-command'

export default class Exec extends PercyCommand {
static description = 'Start and stop Percy around a supplied command'
static description = 'Start and stop Percy around a supplied command.'
static hidden = false
static strict = false

Expand Down
4 changes: 3 additions & 1 deletion src/commands/finalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import BuildService from '../services/build-service'
import PercyCommand from './percy-command'

export default class Finalize extends PercyCommand {
static description = 'finalize a build'
static description =
'Finalize a build. Commonly used for parallelized builds, especially when ' +
'the number of parallelized processes is unknown.'
static hidden = false

static flags = {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import logger from '../utils/logger'
import PercyCommand from './percy-command'

export default class Snapshot extends PercyCommand {
static description = 'Snapshot a directory containing a pre-built static website'
static description = 'Snapshot a directory containing a pre-built static website.'
static hidden = false

static args = [{
Expand Down

0 comments on commit 7ad25c0

Please sign in to comment.