Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/guides/contributing/writers-guide.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Writer's Guide
authors: avivkeller
authors: avivkeller,alexander-akait
Comment thread
bjohansebas marked this conversation as resolved.
---

# Writer's Guide
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/contributing/writing-a-plugin.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Writing a Plugin
authors: slavafomin,tbroadley,nveenjain,iamakulov,byzyk,franjohn21,EugeneHlushko,snitin315,rahul3v,jamesgeorge007
authors: slavafomin,tbroadley,nveenjain,iamakulov,byzyk,franjohn21,EugeneHlushko,snitin315,rahul3v,jamesgeorge007,bjohansebas
---

# Writing a Plugin
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/core-workflows/production.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Production
authors: henriquea,rajagopal4890,makuzaverite,markerikson,simon04,kisnows,chrisVillanueva,swapnilmishra,bring2dip,redian,skipjack,xgqfrms,kelset,xgirma,mehrdaad,SevenOutman,AnayaDesign,wizardofhogwarts,aholzner,EugeneHlushko,snitin315,Brennvo,ThierryRakotomanana,avivkeller
authors: henriquea,rajagopal4890,makuzaverite,markerikson,simon04,kisnows,chrisVillanueva,swapnilmishra,bring2dip,redian,skipjack,xgqfrms,kelset,xgirma,mehrdaad,SevenOutman,AnayaDesign,wizardofhogwarts,aholzner,EugeneHlushko,snitin315,Brennvo,ThierryRakotomanana,avivkeller,alexander-akait
---

# Production
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/getting-started/concepts/targets.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Targets
authors: TheLarkInn,rouzbeh84,johnstew,srilman,byzyk,EugeneHlushko,avivkeller
authors: TheLarkInn,rouzbeh84,johnstew,srilman,byzyk,EugeneHlushko,avivkeller,alexander-akait
---

# Targets
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/getting-started/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Getting Started
authors: bebraw,varunjayaraman,cntanglijun,chrisVillanueva,johnstew,simon04,aaronang,TheDutchCoder,sudarsangp,Vanguard90,chenxsan,EugeneHlushko,ATGardner,ayvarot,bjarki,ztomasze,Spiral90210,byzyk,wizardofhogwarts,myshov,anshumanv,d3lm,snitin315,Etheryen,zowiebeha,avivkeller
authors: bebraw,varunjayaraman,cntanglijun,chrisVillanueva,johnstew,simon04,aaronang,TheDutchCoder,sudarsangp,Vanguard90,chenxsan,EugeneHlushko,ATGardner,ayvarot,bjarki,ztomasze,Spiral90210,byzyk,wizardofhogwarts,myshov,anshumanv,d3lm,snitin315,Etheryen,zowiebeha,avivkeller,alexander-akait
---

# Getting Started
Expand Down
541 changes: 468 additions & 73 deletions pages/guides/modern-web/native-css.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pages/guides/optimization/build-performance.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Build Performance
authors: sokra,tbroadley,byzyk,madhavarshney,wizardofhogwarts,anikethsaha,Brennvo,avivkeller
authors: sokra,tbroadley,byzyk,madhavarshney,wizardofhogwarts,anikethsaha,Brennvo,avivkeller,alexander-akait
---

# Build Performance
Expand Down
9 changes: 6 additions & 3 deletions pages/guides/optimization/tree-shaking.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Tree Shaking
authors: simon04,zacanger,alexjoverm,avant1,MijaelWatts,dmitriid,probablyup,gish,lumo10,byzyk,pnevares,EugeneHlushko,AnayaDesign,torifat,rahul3v,snitin315,vansh5632,Brennvo,ThierryRakotomanana,avivkeller
authors: simon04,zacanger,alexjoverm,avant1,MijaelWatts,dmitriid,probablyup,gish,lumo10,byzyk,pnevares,EugeneHlushko,AnayaDesign,torifat,rahul3v,snitin315,vansh5632,Brennvo,ThierryRakotomanana,avivkeller,bjohansebas
---

# Tree Shaking
Expand Down Expand Up @@ -483,8 +483,11 @@ import { createLogger } from './utils';
const unused = createLogger('debug');
```

> [!WARNING]
> The annotation currently only takes effect within the module where it is declared. Cross-module propagation is planned for a future release.
> [!NOTE]
> Since webpack 5.108.0 the annotation propagates across module boundaries, so an unused call in an importing module is tree-shaken too. (Before 5.108.0 it only took effect within the module where it was declared.)

> [!NOTE]
> If you can't edit the source to add the annotation (for example, a function coming from a dependency), you can mark names as side-effect-free from your config with [`module.parser.javascript.pureFunctions`](/docs/api/options#moduleparserjavascriptpurefunctions) (5.108.0+).

## Minify the output

Expand Down
2 changes: 1 addition & 1 deletion pages/guides/tooling-and-integration/integrations.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Integrations
authors: pksjce,bebraw,tashian,skipjack,AnayaDesign,avivkeller
authors: pksjce,bebraw,tashian,skipjack,AnayaDesign,avivkeller,alexander-akait
---

# Integrations
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/tooling-and-integration/typescript.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: TypeScript
authors: 'morsdyce,kkamali,mtrivera,byzyk,EugeneHlushko,chenxsan,snitin315,tusharthakur04,ThierryRakotomanana,valentina-buoro,avivkeller'
authors: 'morsdyce,kkamali,mtrivera,byzyk,EugeneHlushko,chenxsan,snitin315,tusharthakur04,ThierryRakotomanana,valentina-buoro,avivkeller,alexander-akait'
---

# TypeScript
Expand Down
Loading