You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs(api): minor fix in cli
Make minor fix in the CLI documentation to reflect this comment:
webpack#1577 (comment)
* docs(plugins): clarify and simplify `SourceMapDevToolPlugin` docs (#1581)
Try to resolve the confusion from #1556. Also update the options
section to clean things up a bit both for readability and grammar.
Resolves#1556
* docs(guides): update "external limitations" example in author-libraries (#1583)
* docs(plugins): update commons-chunk-plugin.md (#1560)
Changed example to declare the plugin within `plugins` property.
* docs(guides): rewrite shimming (#1579)
Rewrite the main sections of the guide to synchronize it with
the other core guides. Briefly mention the other utilities that
don't require full on examples (details can be found via links).
Closes#1258
* docs(guides): fix small issues in shimming (#1591)
* docs(guides): fix entry path in typescript (#1592)
* docs(guides): fix typos in production (#1584)
* fix(sponsors): update to reflect opencollective change (#1588)
OpenCollective's structure changed a bit. This address that
and makes a few other notable changes:
- add additional sponsors
- allow to merge additional sponsors to existing sponsors
- limit width of logos to 3 x height to disallow very wide logos
- format money values with commas
* docs(config): update configuration-languages (#1590)
Remove local type def from TypeScript snippet. The @types/node type
definition module already declares `__dirname` type:
https://git.io/v5Dr9
* docs(guides): update hot-module-replacement (#1539)
Add an example to demonstrate using hot module replacement with
`webpack-dev-server`'s Node.js API instead of within a normal
configuration file.
* docs(guides): update development.md (#1586)
The article was missing references to `clean-webpack-plugin`
in the `webpack.config.js` file and `package.json` files.
* docs(guides): update tree-shaking.md (#1589)
As a conclusion, I thought it would be a good idea to show case
a high-level explanation of why it's called tree shaking. Once the
user reads the guide and ends up with a high-level explanation
the word tree shaking will stick to the user's head.
* docs(guides): update code-splitting (#1585)
Suggest solutions to the problem right away seems to be a
better approach. Use similar text as was used here:
https://webpack.js.org/api/module-methods/#import-
* docs(plugins): update module-concatenation-plugin (#1565)
Add more information about optimization bailouts. Attempt to transfer
content from the blog post to the official docs. I want to follow up with
a PR for better bailout reasons. The hope is that the reasons will match
those listed in the table.
* docs(api): fix type in compiler.md (#1601)
* docs(config): update output.md (#1541)
Clarify interactions between `libraryTarget` and `library`. The
interactions between the two and how some of the sections were not
well explained, in some cases were incorrect, misleading or missing
information.
* docs(api): add concurrent usage warning in node.md (#1599)
* docs(guides): update environment-variables (#1549)
Add documentation about setting environment variables in CLI with
`--env`. Link to webpack _CLI Environment_ section. Add additional
usage to `--env` CLI docs.
* Swap ordering of pre/post loaders (#1602)
`pre` loaders run at the beginning, `post` loaders run at the end.
* docs(sponsors): update segment's donations (#1603)
* update contributors
@@ -48,14 +76,14 @@ export default class Support extends React.Component {
48
76
return(
49
77
<divclassName="support">
50
78
<divclassName="support__description">
51
-
{type==='sponsors' ? (
79
+
{rank==='backer' ? (
52
80
<p>
53
-
<bclassName="support__rank">{rank} sponsors</b>
54
-
<span>are those who have pledged {minimum ? `$${minimum}` : 'up'}{maximum ? `to $${maximum}` : 'or more'} to webpack.</span>
81
+
The following <b>Backers</b> are individuals who have contributed various amounts of money in order to help support webpack. Every little bit helps, and we appreciate even the smallest contributions.
55
82
</p>
56
83
) : (
57
84
<p>
58
-
The following <b>Backers</b> are individuals who have contributed various amounts of money in order to help support webpack. Every little bit helps, and we appreciate even the smallest contributions.
85
+
<bclassName="support__rank">{rank} sponsors</b>
86
+
<span>are those who have pledged {minimum ? `$${formatMoney(minimum)}` : 'up'}{maximum ? `to $${formatMoney(maximum)}` : 'or more'} to webpack.</span>
59
87
</p>
60
88
)}
61
89
</div>
@@ -64,22 +92,22 @@ export default class Support extends React.Component {
64
92
supporters.map((supporter,index)=>(
65
93
<akey={supporter.id||supporter.username||index}
66
94
className="support__item"
67
-
title={`$${supporter.totalDonations/100} by ${supporter.name||supporter.username}`}
95
+
title={`$${formatMoney(supporter.totalDonations/100)} by ${supporter.name||supporter.username}`}
W> The API only supports a single concurrent compilation at a time. When using `run`, wait for it to finish before calling `run` or `watch` again. When using `watch`, call `close` and wait for it to finish before calling `run` or `watch` again. Concurrent compilations will corrupt the output files.
0 commit comments