File tree 1 file changed +9
-10
lines changed
packages/compiler-sfc/src/stylePlugins
1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
import { PluginCreator , Rule , AtRule } from 'postcss'
2
2
import selectorParser from 'postcss-selector-parser'
3
- import { warn } from '../warn'
4
3
5
4
const animationNameRE = / ^ ( - \w + - ) ? a n i m a t i o n - n a m e $ /
6
5
const animationRE = / ^ ( - \w + - ) ? a n i m a t i o n $ /
@@ -94,10 +93,10 @@ function rewriteSelector(
94
93
) {
95
94
n . value = ' '
96
95
n . spaces . before = n . spaces . after = ''
97
- warn (
98
- `the >>> and /deep/ combinators have been deprecated. ` +
99
- `Use :deep() instead.`
100
- )
96
+ // warn(
97
+ // `the >>> and /deep/ combinators have been deprecated. ` +
98
+ // `Use :deep() instead.`
99
+ // )
101
100
return false
102
101
}
103
102
@@ -126,12 +125,12 @@ function rewriteSelector(
126
125
}
127
126
selector . removeChild ( n )
128
127
} else {
129
- // DEPRECATED usage
128
+ // DEPRECATED usage in v3
130
129
// .foo ::v-deep .bar -> .foo[xxxxxxx] .bar
131
- warn (
132
- `::v-deep usage as a combinator has ` +
133
- `been deprecated. Use :deep(<inner-selector>) instead.`
134
- )
130
+ // warn(
131
+ // `::v-deep usage as a combinator has ` +
132
+ // `been deprecated. Use :deep(<inner-selector>) instead.`
133
+ // )
135
134
const prev = selector . at ( selector . index ( n ) - 1 )
136
135
if ( prev && isSpaceCombinator ( prev ) ) {
137
136
selector . removeChild ( prev )
You can’t perform that action at this time.
0 commit comments