Skip to content

Commit 0f82297

Browse files
docs: fix typo in examples
2 parents 21be52b + 8e7ac44 commit 0f82297

File tree

38 files changed

+42
-42
lines changed

38 files changed

+42
-42
lines changed

examples/chunkhash/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import("./async2");
2020
```javascript
2121
var path = require("path");
2222
module.exports = {
23-
// mode: "development || "production",
23+
// mode: "development" || "production",
2424
entry: {
2525
main: "./example"
2626
},

examples/chunkhash/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var path = require("path");
22
module.exports = {
3-
// mode: "development || "production",
3+
// mode: "development" || "production",
44
entry: {
55
main: "./example"
66
},

examples/coffee-script/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
// mode: "development || "production",
2+
// mode: "development" || "production",
33
module: {
44
rules: [
55
{

examples/common-chunk-grandchildren/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module.exports = function() {
8686
const path = require("path");
8787

8888
module.exports = {
89-
// mode: "development || "production",
89+
// mode: "development" || "production",
9090
entry: {
9191
main: ["./example.js"]
9292
},

examples/common-chunk-grandchildren/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const path = require("path");
33

44
module.exports = {
5-
// mode: "development || "production",
5+
// mode: "development" || "production",
66
entry: {
77
main: ["./example.js"]
88
},

examples/dll-app-and-vendor/0-vendor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var path = require("path");
1313
var webpack = require("../../../");
1414

1515
module.exports = {
16-
// mode: "development || "production",
16+
// mode: "development" || "production",
1717
context: __dirname,
1818
entry: ["example-vendor"],
1919
output: {

examples/dll-app-and-vendor/0-vendor/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var path = require("path");
22
var webpack = require("../../../");
33

44
module.exports = {
5-
// mode: "development || "production",
5+
// mode: "development" || "production",
66
context: __dirname,
77
entry: ["example-vendor"],
88
output: {

examples/dll-user/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is the _user_ bundle, which uses the manifest from [dll-reference example](
1010
var path = require("path");
1111
var webpack = require("../../");
1212
module.exports = {
13-
// mode: "development || "production",
13+
// mode: "development" || "production",
1414
plugins: [
1515
new webpack.DllReferencePlugin({
1616
context: path.join(__dirname, "..", "dll"),

examples/dll-user/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var path = require("path");
22
var webpack = require("../../");
33
module.exports = {
4-
// mode: "development || "production",
4+
// mode: "development" || "production",
55
plugins: [
66
new webpack.DllReferencePlugin({
77
context: path.join(__dirname, "..", "dll"),

examples/dll/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is the _reference_ bundle (with the manifests) for [dll user example](https
1010
var path = require("path");
1111
var webpack = require("../../");
1212
module.exports = {
13-
// mode: "development || "production",
13+
// mode: "development" || "production",
1414
resolve: {
1515
extensions: [".js", ".jsx"]
1616
},

0 commit comments

Comments
 (0)