@muonic/muon 0.0.2-experimental-169-a1cb639.0 → 0.0.2-experimental-170-d636244.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muonic/muon",
|
|
3
|
-
"version": "0.0.2-experimental-
|
|
3
|
+
"version": "0.0.2-experimental-170-d636244.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"path-is-inside": "1.0.2",
|
|
43
43
|
"postcss": "8.4.14",
|
|
44
44
|
"postcss-clean": "1.2.2",
|
|
45
|
+
"postcss-extend-rule": "^4.0.0",
|
|
45
46
|
"postcss-import": "14.1.0",
|
|
46
47
|
"postcss-preset-env": "7.7.2",
|
|
47
48
|
"postcss-simple-vars": "6.0.3",
|
|
@@ -7,6 +7,7 @@ import postcss from 'postcss';
|
|
|
7
7
|
import postcssPreset from 'postcss-preset-env';
|
|
8
8
|
import postcssImport from 'postcss-import';
|
|
9
9
|
import postcssVariables from 'postcss-simple-vars';
|
|
10
|
+
import postcssExtendRule from 'postcss-extend-rule';
|
|
10
11
|
import litcssPlugin from 'rollup-plugin-lit-css';
|
|
11
12
|
import { cleanup, getConfig, getDestination, createTokens, sourceFilesAnalyzer, getAliasPaths } from './utils/index.mjs';
|
|
12
13
|
|
|
@@ -48,6 +49,7 @@ const postcssPlugins = [
|
|
|
48
49
|
'logical-properties-and-values': false /* allowing start end values */
|
|
49
50
|
}
|
|
50
51
|
}),
|
|
52
|
+
postcssExtendRule(),
|
|
51
53
|
autoprefixer({ grid: true })
|
|
52
54
|
];
|
|
53
55
|
|