parent
d1e1084ec1
commit
f28212f933
|
@ -72,8 +72,14 @@ function scopeCss(css = '', hash) {
|
|||
output = `${last} ${output}`
|
||||
}
|
||||
} else {
|
||||
if (last.startsWith(':')) {
|
||||
output = parseVDeep(last, output)
|
||||
if (last.includes(':')) {
|
||||
if (last.startsWith(':')) {
|
||||
output = parseVDeep(last, output)
|
||||
} else {
|
||||
scoped = true
|
||||
last = last.replace(':', `[data-${hash}]:`)
|
||||
output = `${last} ${output}`
|
||||
}
|
||||
} else {
|
||||
scoped = true
|
||||
output = `${last}[data-${hash}] ${output}`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "fite",
|
||||
"type": "module",
|
||||
"version": "0.7.4",
|
||||
"version": "0.7.5",
|
||||
"bin": {
|
||||
"fite": "index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue