Skip to content

Commit

Permalink
fix: incorrect import path
Browse files Browse the repository at this point in the history
  • Loading branch information
lukePeavey committed Nov 12, 2020
1 parent 80f9ae7 commit 1d6ac57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/SplitType.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import extend from './utils/extend'
import parseSettings from './utils/parseSettings'
import toArray from './utils/toArray'
import getTargetElements from './utils/getTargetElements'
import { Data, RemoveData } from '../private/Data-WeakMap'
import { Data, RemoveData } from './Data'
import split from './split'
import defaults from './defaults'

Expand Down
2 changes: 1 addition & 1 deletion lib/split.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import parseTypes from './utils/parseTypes'
import getTextContent from './utils/getTextContent'
import extend from './utils/extend'
import defaults from './defaults'
import { Data } from '../private/Data-WeakMap'
import { Data } from './Data'

const createFragment = () => document.createDocumentFragment()
const createTextNode = (str) => document.createTextNode(str)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-type",
"version": "0.2.0",
"version": "0.2.1",
"description": "A javascript library that splits plain text into individual lines, words, and characters.",
"main": "dist/split-type.js",
"unpkg": "dist/split-type.min.js",
Expand Down

0 comments on commit 1d6ac57

Please sign in to comment.