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

pull/2423/head
Joaquín Sánchez 2 years 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" "default": "./dist/client/theme-default/index.js"
}, },
"./theme-without-fonts": { "./theme-without-fonts": {
"types": "./theme.d.ts", "types": "./theme-without-fonts.d.ts",
"default": "./dist/client/theme-default/without-fonts.js" "default": "./dist/client/theme-default/without-fonts.js"
} }
}, },
@ -36,7 +36,8 @@
"types", "types",
"template", "template",
"client.d.ts", "client.d.ts",
"theme.d.ts" "theme.d.ts",
"theme-without-fonts.d.ts"
], ],
"repository": { "repository": {
"type": "git", "type": "git",

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