Skip to content

Commit 1a286a6

Browse files
author
Rouzbeh Sarrafieh
committed
lower casing all Capital Case Webpack instances
1 parent 6540bbf commit 1a286a6

File tree

16 files changed

+23
-24
lines changed

16 files changed

+23
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# webpack.js.org
44

5-
Guides, documentation, and all things Webpack.
5+
Guides, documentation, and all things webpack.
66

77
## Contributing
88

antwar.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ module.exports = {
137137
return combineContexts(content, generated);
138138
}
139139
),
140-
140+
141141
vote: {
142142
path() {
143143
return require('./components/vote/list.jsx').default
@@ -166,7 +166,7 @@ module.exports = {
166166

167167
function root(contentCb) {
168168
return {
169-
title: 'Webpack',
169+
title: 'webpack',
170170
path: function() { // Load path content
171171
return contentCb();
172172
},

components/organization/projects.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{
1616
"repo": "webpack/loader-utils",
1717
"npm": "loader-utils",
18-
"description": "Webpack loader utilities.",
18+
"description": "webpack loader utilities.",
1919
"maintainer": "sokra"
2020
},
2121
{
@@ -289,4 +289,3 @@
289289
"maintainer": "thelarkinn"
290290
}
291291
]
292-

components/site/site.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export default props => {
2828
}))
2929
}));
3030

31-
// Rename the root section ("Webpack" => "Other") and push it to the end
32-
let rootIndex = sections.findIndex(section => section.title === 'Webpack');
31+
// Rename the root section ("webpack" => "Other") and push it to the end
32+
let rootIndex = sections.findIndex(section => section.title === 'webpack');
3333
let rootSection = sections.splice(rootIndex, 1)[0];
3434
rootSection.title = 'Other';
3535
sections.push(rootSection);

content/concepts/output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors:
77
- rouzbeh84
88
---
99

10-
Options affecting the output of the compilation. `output` options tell Webpack how to write the compiled files to disk. Note, that while there can be multiple `entry` points, only one `output` configuration is specified.
10+
Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. Note, that while there can be multiple `entry` points, only one `output` configuration is specified.
1111

1212
If you use any hashing (`[hash]` or `[chunkhash]`), make sure to have a consistent ordering of modules. Use the `OccurrenceOrderPlugin` or `recordsPath`.
1313

content/configuration/entry-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors:
77
- tarang9211
88
---
99

10-
The entry object is where Webpack looks to start building the bundle. The context is an absolute string to the directory that contains the entry files.
10+
The entry object is where webpacklooks to start building the bundle. The context is an absolute string to the directory that contains the entry files.
1111

1212
## `context`
1313

content/configuration/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
- terinjokes
1111
---
1212

13-
Webpack is fed via a configuration object. It is passed in one of two ways depending on how you are using webpack: through the terminal or via Node.js. All the available configuration options are specified below.
13+
webpack is fed via a configuration object. It is passed in one of two ways depending on how you are using webpack: through the terminal or via Node.js. All the available configuration options are specified below.
1414

1515
T> New to webpack? Check out our guide to some of webpack's [core concepts](/concepts) to get started!
1616

@@ -148,7 +148,7 @@ var path = require('path');
148148
149149
[loader](/configuration/module#rule-loader): "babel-loader",
150150
// the loader which should be applied, it'll be resolved relative to the context
151-
// -loader suffix is no longer optional in Webpack 2 for clarity reasons
151+
// -loader suffix is no longer optional in webpack2 for clarity reasons
152152
// see [webpack 1 upgrade guide](/guides/migrating)
153153
154154
[options](/configuration/module#rule-options-rule-query): {

content/configuration/watch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors:
77
- SpaceK33z
88
---
99

10-
Webpack can watch files and recompile whenever they change. This page explains how to enable this and a couple of tweaks you can make if watching does not properly for you.
10+
webpack can watch files and recompile whenever they change. This page explains how to enable this and a couple of tweaks you can make if watching does not properly for you.
1111

1212
## `watch`
1313

content/get-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ __index.html__
4747
```html
4848
<html>
4949
<head>
50-
<title>Webpack 2 demo</title>
50+
<title>webpack 2 demo</title>
5151
<script src="https://unpkg.com/[email protected]"></script>
5252
</head>
5353
<body>
@@ -86,7 +86,7 @@ We also need to change `index.html` to expect a single bundled js file.
8686
```diff
8787
<html>
8888
<head>
89-
<title>Webpack 2 demo</title>
89+
<title>webpack 2 demo</title>
9090
- <script src="https://unpkg.com/[email protected]"></script>
9191
</head>
9292
<body>

content/guides/dependency-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Example:
2121
require("./template/" + name + ".ejs");
2222
```
2323

24-
Webpack parses the `require()` call and extracts some information:
24+
webpack parses the `require()` call and extracts some information:
2525

2626
```
2727
Directory: ./template
@@ -50,7 +50,7 @@ You can create your own context with the `require.context()` function.
5050
It allows you to pass in a directory to search, a flag indicating whether subdirectories should be searched
5151
too, and a regular expression to match files against.
5252

53-
Webpack parses for `require.context()` in the code while building.
53+
webpack parses for `require.context()` in the code while building.
5454

5555
The syntax is as follows:
5656

0 commit comments

Comments
 (0)