Skip to content

Commit

Permalink
updated exports
Browse files Browse the repository at this point in the history
  • Loading branch information
klappy committed Sep 17, 2019
1 parent deecc6a commit bd14ca1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
__tests__
__tests__
styleguide
styleguide.config.js
styleguide.styles.js
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
word,
punctuation,
whitespace,
number_,
number_ as number,
} from './tokenizers';

import {
Expand All @@ -17,7 +17,7 @@ import {
selectionsToRanges,
} from './selectionHelpers';

export default {
export {
tokenize,
occurrenceInString,
occurrencesInString,
Expand All @@ -27,5 +27,5 @@ export default {
word,
punctuation,
whitespace,
number: number_,
number,
};

0 comments on commit bd14ca1

Please sign in to comment.