@pisell/build-plugin-lowcode 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/build-plugin-lowcode",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "build plugin for component-to-lowcode",
5
5
  "main": "src/index.js",
6
6
  "keywords": [
package/src/index.js CHANGED
@@ -197,7 +197,7 @@ const addPostCss = (config) => {
197
197
  [
198
198
  'postcss-preset-env',
199
199
  {
200
- rootSelector: '#root',
200
+ rootSelector: '#body',
201
201
  stage: 3,
202
202
  browsers: [
203
203
  'last 2 versions',
@@ -211,7 +211,7 @@ const addPostCss = (config) => {
211
211
  ],
212
212
  [
213
213
  require('postcss-add-root-selector')({
214
- rootSelector: '#root',
214
+ rootSelector: '#body',
215
215
  })
216
216
  ]
217
217
  ],
@@ -230,7 +230,7 @@ const addPostCss = (config) => {
230
230
  [
231
231
  'postcss-preset-env',
232
232
  {
233
- rootSelector: '#root',
233
+ rootSelector: '#body',
234
234
  stage: 3,
235
235
  browsers: [
236
236
  'last 2 versions',
@@ -244,7 +244,7 @@ const addPostCss = (config) => {
244
244
  ],
245
245
  [
246
246
  require('postcss-add-root-selector')({
247
- rootSelector: '#root',
247
+ rootSelector: '#body',
248
248
  })
249
249
  ]
250
250
  ],