@muonic/muon 0.0.2-experimental-204-84bc0c7.0 → 0.0.2-experimental-205-ad35c5a.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-205-ad35c5a.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"postcss-clean": "1.2.2",
|
|
45
45
|
"postcss-extend-rule": "4.0.0",
|
|
46
46
|
"postcss-import": "15.1.0",
|
|
47
|
+
"postcss-nested-import": "1.0.0",
|
|
47
48
|
"postcss-preset-env": "8.3.2",
|
|
48
49
|
"postcss-simple-vars": "7.0.1",
|
|
49
50
|
"rollup-plugin-lit-css": "4.0.1",
|
|
@@ -6,6 +6,7 @@ import autoprefixer from 'autoprefixer';
|
|
|
6
6
|
import postcss from 'postcss';
|
|
7
7
|
import postcssPreset from 'postcss-preset-env';
|
|
8
8
|
import postcssImport from 'postcss-import';
|
|
9
|
+
import postcssImportNested from 'postcss-nested-import';
|
|
9
10
|
import postcssVariables from 'postcss-simple-vars';
|
|
10
11
|
import postcssExtendRule from 'postcss-extend-rule';
|
|
11
12
|
import litcssPlugin from 'rollup-plugin-lit-css';
|
|
@@ -43,6 +44,7 @@ const postcssPlugins = [
|
|
|
43
44
|
}
|
|
44
45
|
}),
|
|
45
46
|
postcssImport(),
|
|
47
|
+
postcssImportNested(),
|
|
46
48
|
postcssPreset({
|
|
47
49
|
stage: 0,
|
|
48
50
|
features: {
|