Skip to content

Commit

Permalink
fix: Improved readme and help text (#200)
Browse files Browse the repository at this point in the history
* Update README.md

* Update descriptions that get generated for README
  • Loading branch information
timhaines committed May 21, 2019
1 parent 5e0488a commit 34c066c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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 34c066c

Please sign in to comment.