@mpxjs/webpack-plugin 2.10.18-beta.4 → 2.10.18-beta.5
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.
|
@@ -422,7 +422,7 @@ module.exports = function getSpec({ warn, error }) {
|
|
|
422
422
|
if (Array.isArray(value) || cssVariableExp.test(value)) return { prop, value }
|
|
423
423
|
const values = parseValues(value)
|
|
424
424
|
// Todo transform 排序不一致时,transform动画会闪烁,故这里同样的排序输出 transform
|
|
425
|
-
values.sort()
|
|
425
|
+
// values.sort()
|
|
426
426
|
const transform = []
|
|
427
427
|
values.forEach(item => {
|
|
428
428
|
const match = item.match(/([/\w]+)\((.+)\)/)
|
|
@@ -285,7 +285,7 @@ export function parseValues(str, char = ' ') {
|
|
|
285
285
|
function parseTransform(transformStr) {
|
|
286
286
|
const values = parseValues(transformStr);
|
|
287
287
|
// Todo transform 排序不一致时,transform动画会闪烁,故这里同样的排序输出 transform
|
|
288
|
-
values.sort()
|
|
288
|
+
// values.sort()
|
|
289
289
|
const transform = [];
|
|
290
290
|
values.forEach(item => {
|
|
291
291
|
const match = item.match(/([/\w]+)\((.+)\)/);
|
|
@@ -335,7 +335,7 @@ export function parseValues (str: string, char = ' ') {
|
|
|
335
335
|
function parseTransform (transformStr: string) {
|
|
336
336
|
const values = parseValues(transformStr)
|
|
337
337
|
// Todo transform 排序不一致时,transform动画会闪烁,故这里同样的排序输出 transform
|
|
338
|
-
values.sort()
|
|
338
|
+
// values.sort()
|
|
339
339
|
const transform: { [propName: string]: string | number | number[] }[] = []
|
|
340
340
|
values.forEach(item => {
|
|
341
341
|
const match = item.match(/([/\w]+)\((.+)\)/)
|