File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import createDebug from 'debug'
12
12
import builtInTransformations from '../transformations'
13
13
import { excludedTransformations } from '../transformations'
14
14
import vueTransformations from '../vue-transformations'
15
+ import { excludedVueTransformations } from '../vue-transformations'
15
16
import runTransformation from '../src/runTransformation'
16
17
import { transform as packageTransform } from '../src/packageTransformation'
17
18
@@ -77,7 +78,9 @@ async function main() {
77
78
}
78
79
79
80
for ( let key in vueTransformations ) {
80
- processTransformation ( resolvedPaths , key , vueTransformations [ key ] )
81
+ if ( ! excludedVueTransformations . includes ( key ) ) {
82
+ processTransformation ( resolvedPaths , key , vueTransformations [ key ] )
83
+ }
81
84
}
82
85
packageTransform ( )
83
86
}
Original file line number Diff line number Diff line change @@ -18,4 +18,8 @@ const transformationMap: {
18
18
'remove-listeners' : require ( './remove-listeners' )
19
19
}
20
20
21
+ export const excludedVueTransformations = [
22
+ 'v-bind-order-sensitive'
23
+ ]
24
+
21
25
export default transformationMap
You can’t perform that action at this time.
0 commit comments