fix(otis): Add missing named export for i18n
This commit is contained in:
parent
452a2e519a
commit
8453d1898a
1 changed files with 12 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
import { Design } from '@freesewing/core'
|
import { Design } from '@freesewing/core'
|
||||||
import { data } from '../data.mjs'
|
import { data } from '../data.mjs'
|
||||||
|
import { i18n } from '../i18n/index.mjs'
|
||||||
// Parts
|
// Parts
|
||||||
import { back } from './back.mjs'
|
import { back } from './back.mjs'
|
||||||
import { front } from './front.mjs'
|
import { front } from './front.mjs'
|
||||||
|
@ -16,4 +17,14 @@ const Otis = new Design({
|
||||||
})
|
})
|
||||||
|
|
||||||
// Named exports
|
// Named exports
|
||||||
export { back, front, shortsleeve, longsleeve, bindingNeckBack, bindingNeckFront, bindingLeg, Otis }
|
export {
|
||||||
|
back,
|
||||||
|
front,
|
||||||
|
shortsleeve,
|
||||||
|
longsleeve,
|
||||||
|
bindingNeckBack,
|
||||||
|
bindingNeckFront,
|
||||||
|
bindingLeg,
|
||||||
|
i18n,
|
||||||
|
Otis,
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue