Skip to content

Commit

Permalink
feat: Unhide start and stop commands (#534)
Browse files Browse the repository at this point in the history
* feat: Unhide `start` and `stop` commands

These shouldn't be hidden, they're useful and recommended to use in specifc
cases.

* fix: Run `yarn upgrade` for caniuse
  • Loading branch information
Robdel12 authored Jul 10, 2020
1 parent e03f60c commit 7914a74
Show file tree
Hide file tree
Showing 3 changed files with 538 additions and 508 deletions.
2 changes: 1 addition & 1 deletion src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PercyCommand from './percy-command'

export default class Start extends PercyCommand {
static description = 'Starts the percy process.'
static hidden = true
static hidden = false

static examples = [
'$ percy start\n' +
Expand Down
2 changes: 1 addition & 1 deletion src/commands/stop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import PercyCommand from './percy-command'

export default class Stop extends PercyCommand {
static description = 'Stops the percy process.'
static hidden = true
static hidden = false

static examples = [
'$ percy stop\n' +
Expand Down
Loading

0 comments on commit 7914a74

Please sign in to comment.