@@ -36,20 +36,20 @@ Here are the most important tasks you might need to use:
3636* ` yarn generate-zips ` - generate the zip files from the examples. Zip available via the ` live-example ` tags in the docs.
3737
3838* ` yarn example-e2e ` - run all e2e tests for examples
39- - ` yarn example-e2e -- -- setup ` - force webdriver update & other setup, then run tests
40- - ` yarn example-e2e -- -- filter=foo ` - limit e2e tests to those containing the word "foo"
41- - ` yarn example-e2e -- -- setup --local ` - run e2e tests with the local version of Angular contained in the "dist" folder
39+ - ` yarn example-e2e --setup ` - force webdriver update & other setup, then run tests
40+ - ` yarn example-e2e --filter=foo ` - limit e2e tests to those containing the word "foo"
41+ - ` yarn example-e2e --setup --local ` - run e2e tests with the local version of Angular contained in the "dist" folder
4242
4343* ` yarn build-ie-polyfills ` - generates a js file of polyfills that can be loaded in Internet Explorer.
4444
4545## Using ServiceWorker locally
4646
47- Since abb36e3cb, running ` yarn start -- -- prod ` will no longer set up the ServiceWorker, which
47+ Since abb36e3cb, running ` yarn start --prod ` will no longer set up the ServiceWorker, which
4848would require manually running ` yarn sw-manifest ` and ` yarn sw-copy ` (something that is not possible
4949with webpack serving the files from memory).
5050
5151If you want to test ServiceWorker locally, you can use ` yarn build ` and serve the files in ` dist/ `
52- with ` yarn http-server -- dist -p 4200 ` .
52+ with ` yarn http-server dist -p 4200 ` .
5353
5454For more details see #16745 .
5555
@@ -117,10 +117,10 @@ yarn serve-and-sync
117117```
118118
119119* Open a browser at https://localhost:4200/ and navigate to the document on which you want to work.
120- You can automatically open the browser by using ` yarn start -- - o ` in the first terminal.
120+ You can automatically open the browser by using ` yarn start -o ` in the first terminal.
121121
122122* Make changes to the page's associated doc or example files. Every time a file is saved, the doc will
123123be regenerated, the app will rebuild and the page will reload.
124124
125125* If you get a build error complaining about examples or any other odd behavior, be sure to consult
126- the [ Authors Style Guide] ( https://angular.io/guide/docs-style-guide ) .
126+ the [ Authors Style Guide] ( https://angular.io/guide/docs-style-guide ) .
0 commit comments