Skip to content

Commit

Permalink
fixed import address
Browse files Browse the repository at this point in the history
  • Loading branch information
varna committed Jul 26, 2019
1 parent 72d11de commit baa2022
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'
import units, { UnitKey } from './units/index.js'
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'
import { UnitKey } from './units/index.js'

/**
* 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'
import { UnitKey } from './units/index.js'

const toMeasure = (
{
Expand Down

0 comments on commit baa2022

Please sign in to comment.