Skip to content

Commit a5f8464

Browse files
committed
chore: update exports and documentation
1 parent 4f4ce0c commit a5f8464

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Some of them can be automatically migrated with the help of codemods.
192192
- `v-is` (for in-DOM templates).
193193
- The [`vue/no-deprecated-html-element-is`](https://eslint.vuejs.org/rules/no-deprecated-html-element-is.html) ESLint rule can be used to detect usage for `is` usage on built-in HTML tags.
194194
- `set` and `delete` instance or global methods [will be supported only in IE compat builds](https://github.com/vuejs/vue-next/issues/2026).
195-
- Import replacement codemod could be provided for `Vue.set` and `Vue.delete`.
195+
- implemented as `remove-vue-set-and-delete`
196196

197197
### Generic Transformations
198198

Diff for: transformations/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const transformationMap: {
1616
'new-vue-to-create-app': require('./new-vue-to-create-app'),
1717
'scoped-slots-to-slots': require('./scoped-slots-to-slots'),
1818
'new-directive-api': require('./new-directive-api'),
19+
'remove-vue-set-and-delete': require('./remove-vue-set-and-delete'),
1920

2021
// atomic ones
2122
'remove-contextual-h-from-render': require('./remove-contextual-h-from-render'),

0 commit comments

Comments
 (0)