Skip to content

Commit

Permalink
fixed import path
Browse files Browse the repository at this point in the history
  • Loading branch information
varna committed Jul 26, 2019
1 parent baa2022 commit a1631c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/findUnit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import units, { UnitKey } from './units/index.js'
import units, { UnitKey } from './units/index'
import siPrefixes from './SIPrefixes'

const SQUARE_SYMBOLS = ['²', '2']
Expand Down
2 changes: 1 addition & 1 deletion src/measure.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import findUnit from './findUnit'
import { UnitKey } from './units/index.js'
import { UnitKey } from './units/index'

/**
* Measure of value with unit.
Expand Down
2 changes: 1 addition & 1 deletion src/measureSelector.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import findUnit from './findUnit'
import Measure from './measure'
import { UnitKey } from './units/index.js'
import { UnitKey } from './units/index'

const toMeasure = (
{
Expand Down

0 comments on commit a1631c5

Please sign in to comment.