@plaudit/webpack-extensions 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.1.2] - 2026-03-06
|
|
9
|
+
### Fixed
|
|
10
|
+
- `defer` and `async` not being supported strategies in some pipelines
|
|
11
|
+
- This comes from version `2.85.3`
|
|
12
|
+
|
|
8
13
|
## [3.1.1] - 2026-03-06
|
|
9
14
|
### Fixed
|
|
10
15
|
- Inlined scripts without any other path query parameters not being placed in the footer by default
|
|
@@ -36,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
36
41
|
- Legacy PostCSS features that have been integrated into modern CSS
|
|
37
42
|
- `@extends` support
|
|
38
43
|
|
|
44
|
+
## [2.85.3] - 2026-03-06
|
|
45
|
+
### Fixed
|
|
46
|
+
- `defer` and `async` not being supported strategies in some pipelines
|
|
47
|
+
|
|
39
48
|
## [2.85.2] - 2026-03-06
|
|
40
49
|
### Fixed
|
|
41
50
|
- Issues caused by trying to save a couple of cycles by using `hasAnyKeys` in place of checking the actual keys
|
|
@@ -129,6 +129,10 @@ function unpackRegisterScriptArgsFromPathQueryParameters(pathQueryParameters, fi
|
|
|
129
129
|
let baseArgs;
|
|
130
130
|
const strategy = pathQueryParameters['strategy'];
|
|
131
131
|
switch (strategy) {
|
|
132
|
+
case 'defer':
|
|
133
|
+
case 'async':
|
|
134
|
+
baseArgs = { strategy };
|
|
135
|
+
break;
|
|
132
136
|
case 'eager':
|
|
133
137
|
baseArgs = { strategy: 'eager' };
|
|
134
138
|
break;
|