Skip to content

Commit

Permalink
Update getting-started.md (#1829)
Browse files Browse the repository at this point in the history
From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded
  • Loading branch information
maapteh authored and piglovesyou committed Nov 23, 2019
1 parent fbd3ad2 commit ba9a1aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ compiled output files are not optimized and minimized in this case. You can use
(production) mode:

```shell
$ yarn start -- --release
$ yarn start --release
```

_NOTE: double dashes are required_
Expand All @@ -115,13 +115,13 @@ $ yarn run build
or, for a production build:

```shell
$ yarn run build -- --release
$ yarn run build --release
```

or, for a production docker build:

```shell
$ yarn run build -- --release --docker
$ yarn run build --release --docker
```

_NOTE: double dashes are required_
Expand Down

0 comments on commit ba9a1aa

Please sign in to comment.