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", "t": "Walburga Wappenrock",
"d": "Walburga is a tabard/surcoat, a historical garment from medieval Europe", "d": "Walburga is a tabard/surcoat, a historical garment from medieval Europe",
"p": { "p": {
"base": "Base",
"back": "Back", "back": "Back",
"front": "Front" "front": "Front"
}, },

View file

@ -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'
import { front } from './front.mjs' import { front } from './front.mjs'
import { back } from './back.mjs' import { back } from './back.mjs'
// Re-export skeleton parts so peope can re-use them // Re-export skeleton parts so peope can re-use them
@ -12,4 +13,4 @@ const Walburga = new Design({
}) })
// Named exports // Named exports
export { back, front, base, Walburga } export { back, front, base, Walburga, i18n }