From 0d14b38e9680d263b8819a69eb87e6e509d43b87 Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Mon, 6 Oct 2025 16:51:35 +0200 Subject: [PATCH 1/3] chore: add my name to docs --- src/content/api/loaders.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/api/loaders.mdx b/src/content/api/loaders.mdx index 61c202614257..a9f7033b10ec 100644 --- a/src/content/api/loaders.mdx +++ b/src/content/api/loaders.mdx @@ -15,6 +15,7 @@ contributors: - chenxsan - jamesgeorge007 - alexeyr + - evenstensberg --- A loader is a JavaScript module that exports a function. The [loader runner](https://github.com/webpack/loader-runner) calls this function and passes the result of the previous loader or the resource file into it. The `this` context of the function is filled-in by webpack and the [loader runner](https://github.com/webpack/loader-runner) with some useful methods that allow the loader (among other things) to change its invocation style to async, or get query parameters. From dde087e6dd577de01ec3fd572537fb1c23abe684 Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Mon, 6 Oct 2025 17:40:12 +0200 Subject: [PATCH 2/3] chore: add my name to docs --- src/content/contribute/writing-a-loader.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/contribute/writing-a-loader.mdx b/src/content/contribute/writing-a-loader.mdx index baf83642bf4f..8b3f12caeffb 100644 --- a/src/content/contribute/writing-a-loader.mdx +++ b/src/content/contribute/writing-a-loader.mdx @@ -9,6 +9,7 @@ contributors: - jamesgeorge007 - chenxsan - dev-itsheng + - evenstensberg --- A loader is a node module that exports a function. This function is called when a resource should be transformed by this loader. The given function will have access to the [Loader API](/api/loaders/) using the `this` context provided to it. From b8df4c472390389bad11778e6e8a7611eb2b2ffa Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Mon, 6 Oct 2025 18:26:14 +0200 Subject: [PATCH 3/3] chore: add my name to docs --- src/content/api/plugins.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/api/plugins.mdx b/src/content/api/plugins.mdx index da1e06c75482..069dc469d14f 100644 --- a/src/content/api/plugins.mdx +++ b/src/content/api/plugins.mdx @@ -10,6 +10,7 @@ contributors: - EugeneHlushko - wizardofhogwarts - snitin315 + - evenstensberg --- Plugins are a key piece of the webpack ecosystem and provide the community with