Skip to content

Commit 7275967

Browse files
WojciechKoskipjack
authored andcommitted
docs(guides): remove --progress option from example in development.md (#1789)
Remove `--progress` option that wasn't introduced in previous `package.json` snippets in order to prevent confusion.
1 parent 04cb253 commit 7275967

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/content/guides/development.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ contributors:
66
- rafde
77
- fvgs
88
- TheDutchCoder
9+
- WojciechKo
910
---
1011

1112
T> This guide extends on code examples found in the [Output Management](/guides/output-management) guide.
@@ -214,7 +215,7 @@ __package.json__
214215
"main": "webpack.config.js",
215216
"scripts": {
216217
"test": "echo \"Error: no test specified\" && exit 1",
217-
"watch": "webpack --progress --watch",
218+
"watch": "webpack --watch",
218219
+ "start": "webpack-dev-server --open",
219220
"build": "webpack"
220221
},
@@ -331,7 +332,7 @@ __package.json__
331332
"main": "webpack.config.js",
332333
"scripts": {
333334
"test": "echo \"Error: no test specified\" && exit 1",
334-
"watch": "webpack --progress --watch",
335+
"watch": "webpack --watch",
335336
"start": "webpack-dev-server --open",
336337
+ "server": "node server.js",
337338
"build": "webpack"

0 commit comments

Comments
 (0)