Skip to content

Commit 8166cb2

Browse files
committed
chore: remove todo in comment
1 parent 9a1bb46 commit 8166cb2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

generator/codemods/vuex/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
const addImport = require('../utils/add-import')
22
const removeExtraneousImport = require('../utils/remove-extraneous-import')
33

4+
// new Store() -> createStore()
45
/** @type {import('jscodeshift').Transform} */
56
module.exports = function(fileInfo, api) {
67
const j = api.jscodeshift
78
const root = j(fileInfo.source)
89
const context = { j, root }
910

10-
// TODO: new Store() -> createStore()
11-
1211
const vuexImportDecls = root.find(j.ImportDeclaration, {
1312
source: {
1413
value: 'vuex'

0 commit comments

Comments
 (0)