@plaudit/webpack-extensions 3.0.0-rc.3 → 3.0.1

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,10 @@ 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.0.1] - 2026-02-12
9
+ ### Added
10
+ - Release version!
11
+
8
12
  ## [3.0.0-rc.3] - 2026-02-12
9
13
  ### Fixed
10
14
  - A missing dependency
@@ -23,7 +23,7 @@ function postcssConfigBuilder(variables, postCSSFunctions) {
23
23
  require("postcss-property-lookup")({ logLevel: "warn" }), // Rule
24
24
  require("@plaudit/postcss-strip-units")(), // AtRule, Declaration
25
25
  require("postcss-nested")(), // Rule
26
- require("postcss-url")(),
26
+ require("postcss-url")(), // This is needed because PostCSS flattens everything to a single file, which break's WebPack's URL resolution unless PostCSS updates the URLs to account for the flattening itself
27
27
  require("postcss-calc")(calcOptions), // OnceExit
28
28
  require("@plaudit/postcss-color-function")(), // OnceExit
29
29
  require("autoprefixer")(autoprefixerOptions), // OnceExit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/webpack-extensions",
3
- "version": "3.0.0-rc.3",
3
+ "version": "3.0.1",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "/build",
@@ -38,7 +38,7 @@
38
38
  "@plaudit/php-writer": "^1.3.3",
39
39
  "@plaudit/postcss-color-function": "^5.0.0",
40
40
  "@plaudit/postcss-strip-units": "^3.0.0",
41
- "@plaudit/postcss-variables": "^2.0.0",
41
+ "@plaudit/postcss-variables": "^2.0.1",
42
42
  "@wordpress/dependency-extraction-webpack-plugin": "^6.39.0",
43
43
  "@wordpress/scripts": "^31.4.0",
44
44
  "autoprefixer": "^10.4.24",