fix(types): theme-without-fonts types for node (#2416)

pull/2423/head
Joaquín Sánchez 1 year ago committed by GitHub
parent c869ea64ae
commit 8e87c14fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,7 +23,7 @@
"default": "./dist/client/theme-default/index.js"
},
"./theme-without-fonts": {
"types": "./theme.d.ts",
"types": "./theme-without-fonts.d.ts",
"default": "./dist/client/theme-default/without-fonts.js"
}
},
@ -36,7 +36,8 @@
"types",
"template",
"client.d.ts",
"theme.d.ts"
"theme.d.ts",
"theme-without-fonts.d.ts"
],
"repository": {
"type": "git",

@ -0,0 +1 @@
export * from './theme'
Loading…
Cancel
Save