@mpxjs/webpack-plugin 2.8.10 → 2.8.11
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/lib/json-compiler/index.js +2 -1
- package/lib/wxss/loader.js +14 -0
- package/lib/wxss/options.json +5 -0
- package/package.json +2 -2
|
@@ -119,7 +119,8 @@ module.exports = function (content) {
|
|
|
119
119
|
if (err) return nativeCallback(err)
|
|
120
120
|
let output = `var json = ${JSON.stringify(json, null, 2)};\n`
|
|
121
121
|
if (processOutput) output = processOutput(output)
|
|
122
|
-
|
|
122
|
+
const jsonSpace = this.minimize ? 0 : 2
|
|
123
|
+
output += `module.exports = JSON.stringify(json, null, ${jsonSpace});\n`
|
|
123
124
|
nativeCallback(null, output)
|
|
124
125
|
}
|
|
125
126
|
|
package/lib/wxss/loader.js
CHANGED
|
@@ -144,6 +144,20 @@ module.exports = async function loader (content, map, meta) {
|
|
|
144
144
|
)
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
if (this.minimize) {
|
|
148
|
+
const cssnano = require('cssnano')
|
|
149
|
+
const minimizeOptions = rawOptions.minimize || {}
|
|
150
|
+
let cssnanoConfig = {
|
|
151
|
+
preset: ['cssnano-preset-default', minimizeOptions.optimisation || {}]
|
|
152
|
+
}
|
|
153
|
+
if (minimizeOptions.advanced) {
|
|
154
|
+
cssnanoConfig = {
|
|
155
|
+
preset: ['cssnano-preset-advanced', minimizeOptions.optimisation || {}]
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
plugins.push(cssnano(cssnanoConfig))
|
|
159
|
+
}
|
|
160
|
+
|
|
147
161
|
// Reuse CSS AST (PostCSS AST e.g 'postcss-loader') to avoid reparsing
|
|
148
162
|
if (meta) {
|
|
149
163
|
const { ast } = meta
|
package/lib/wxss/options.json
CHANGED
|
@@ -203,6 +203,11 @@
|
|
|
203
203
|
"description": "Allows exporting styles as array with modules, string or constructable stylesheet (i.e. `CSSStyleSheet`).",
|
|
204
204
|
"link": "https://github.com/webpack-contrib/css-loader#exporttype",
|
|
205
205
|
"enum": ["array", "string", "css-style-sheet"]
|
|
206
|
+
},
|
|
207
|
+
"minimize": {
|
|
208
|
+
"description": "css minimization config.",
|
|
209
|
+
"link": "https://www.cssnano.cn/docs/what-are-optimisations/",
|
|
210
|
+
"type": "object"
|
|
206
211
|
}
|
|
207
212
|
},
|
|
208
213
|
"type": "object"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/webpack-plugin",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.11",
|
|
4
4
|
"description": "mpx compile core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mpx"
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"engines": {
|
|
83
83
|
"node": ">=14.14.0"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "2a9e331eded74dd0eec214a90cfd34cbea17da70"
|
|
86
86
|
}
|