Skip to content

Commit

Permalink
fix: wow-ui panda config에서 theme 못 불러오는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 19, 2024
1 parent 70f43ba commit 82a6776
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 33 deletions.
2 changes: 1 addition & 1 deletion packages/wow-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-a11y": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
Expand All @@ -65,7 +66,6 @@
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.6.15",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^7.5.3",
"tsx": "^4.9.3",
"typescript": "^5.3.3"
Expand Down
8 changes: 3 additions & 5 deletions packages/wow-ui/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import resolve from "@rollup/plugin-node-resolve";
import { babel } from "@rollup/plugin-babel";
import url from "@rollup/plugin-url";
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import typescript from "rollup-plugin-typescript2";
import typescript from "@rollup/plugin-typescript";
import { fileURLToPath } from "url";

const extensions = [".tsx", ".ts", ".js", ".jsx"];
Expand Down Expand Up @@ -44,10 +44,8 @@ export default {
}),
peerDepsExternal(),
typescript({
tsconfigOverride: {
include: ["src/components/**/*"],
exclude: ["**/*.stories.ts", "**/*.stories.tsx"],
},
include: ["src/components/**/*"],
exclude: ["**/*.stories.ts", "**/*.stories.tsx"],
}),
resolve({ extensions }),
commonjs({
Expand Down
2 changes: 1 addition & 1 deletion packages/wow-ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"@styled-system/*": ["./styled-system/*"]
}
},
"include": ["src"],
"include": ["src", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist", "styled-system"]
}
48 changes: 22 additions & 26 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 82a6776

Please sign in to comment.