@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 +2 -0
- package/lib/build.mjs +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
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.
|
|
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": "
|
|
80
|
+
"gitHead": "8bfc179b9aed74c0a6dd6e8edf7a49e40e4f87cc"
|
|
81
81
|
}
|