Skip to content

Commit 9eeb78e

Browse files
committed
chore: use named exports
1 parent 38ac051 commit 9eeb78e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

lib/config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,4 @@ const initializationOptions = {
3434
},
3535
}
3636

37-
module.exports = {
38-
initializationOptions,
39-
}
37+
exports.initializationOptions = initializationOptions

lib/grammar.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,4 @@ function renameGrammarForScopeName(scopeName, newName) {
3131
})
3232
}
3333
}
34-
35-
module.exports = {
36-
renameGrammarForScopeName,
37-
}
34+
exports.renameGrammarForScopeName = renameGrammarForScopeName

0 commit comments

Comments
 (0)