1
0
Fork 0

feat(walburga): Add i18n named export

This commit is contained in:
joostdecock 2023-07-02 17:22:35 +02:00
parent 66a1a00514
commit eece7c4299
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
"t": "Walburga Wappenrock",
"d": "Walburga is a tabard/surcoat, a historical garment from medieval Europe",
"p": {
"base": "Base",
"back": "Back",
"front": "Front"
},

View file

@ -1,5 +1,6 @@
import { Design } from '@freesewing/core'
import { data } from '../data.mjs'
import { i18n } from '../i18n/index.mjs'
import { front } from './front.mjs'
import { back } from './back.mjs'
// Re-export skeleton parts so peope can re-use them
@ -12,4 +13,4 @@ const Walburga = new Design({
})
// Named exports
export { back, front, base, Walburga }
export { back, front, base, Walburga, i18n }