File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 14
14
"build-storybook" : " storybook build --docs" ,
15
15
"test" : " jest" ,
16
16
"typecheck" : " tsc --noEmit" ,
17
- "build:esm" : " tsc && cp -r src/types dist/esm/types " ,
18
- "build:cjs" : " tsc --module commonjs --outDir dist/cjs && cp -r src/types dist/cjs/types " ,
17
+ "build:esm" : " tsc" ,
18
+ "build:cjs" : " tsc --module commonjs --outDir dist/cjs" ,
19
19
"build" : " rm -rf dist && rm -f .tsbuildinfo && npm run build:esm && npm run build:cjs" ,
20
20
"lint-check" : " eslint src/ .storybook/" ,
21
21
"lint-fix" : " yarn lint-check --fix" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import * as buttons from "./buttons"
10
10
import * as chips from "./chips"
11
11
import { colors } from "./colors"
12
12
import type { CustomTheme } from "../../types/theme"
13
+ import "../../types/theme"
13
14
14
15
const shadow = {
15
16
shadowOffsetX : 3 ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export interface ColorGroup {
9
9
contrastText : string
10
10
}
11
11
12
- interface CustomTheme {
12
+ export interface CustomTheme {
13
13
transitionDuration : string
14
14
shadow : string
15
15
colors : {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments