@wordpress/build 0.8.1-next.v.202602271551.0 → 0.9.0

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.9.0 (2026-03-04)
6
+
5
7
  ## 0.8.0 (2026-02-18)
6
8
 
7
9
  ## 0.7.0 (2026-01-29)
package/lib/build.mjs CHANGED
@@ -228,6 +228,7 @@ function createStyleBundlingPlugins( workingDir ) {
228
228
  // Handle CSS modules (.module.css and .module.scss)
229
229
  sassPlugin( {
230
230
  embedded: true,
231
+ sourceMap: false,
231
232
  filter: /\.module\.(css|scss)$/,
232
233
  transform: compileInlineStyle( { cssModules: true } ),
233
234
  type: inlineStyle,
@@ -237,6 +238,7 @@ function createStyleBundlingPlugins( workingDir ) {
237
238
  // Note: .module.css and .module.scss already handled by plugin above
238
239
  sassPlugin( {
239
240
  embedded: true,
241
+ sourceMap: false,
240
242
  filter: /\.(css|scss)$/,
241
243
  transform: compileInlineStyle(),
242
244
  type: inlineStyle,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/build",
3
- "version": "0.8.1-next.v.202602271551.0+464abe399",
3
+ "version": "0.9.0",
4
4
  "description": "Build tool for WordPress plugins.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "95aa7055a5757219e2d96a91efc69f7dd1b2d4c3"
80
+ "gitHead": "8bfc179b9aed74c0a6dd6e8edf7a49e40e4f87cc"
81
81
  }