Skip to content

Commit

Permalink
fix: add unimported ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbien committed Nov 21, 2023
1 parent 96d2453 commit ffacada
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 51 deletions.
18 changes: 18 additions & 0 deletions packages/frosted-ui/.unimportedrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"preset": "node",
"entry": ["src/index.ts"],
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"flow": false,
"ignorePatterns": [
"**/node_modules/**",
"**/*.tests.{js,jsx,ts,tsx}",
"**/*.test.{js,jsx,ts,tsx}",
"**/*.spec.{js,jsx,ts,tsx}",
"**/tests/**",
"**/__tests__/**",
"**/*.d.ts"
],
"ignoreUnimported": [],
"ignoreUnused": ["@radix-ui/colors", "tslib"],
"ignoreUnresolved": ["react"]
}
1 change: 0 additions & 1 deletion packages/frosted-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-direction": "^1.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-portal": "^1.0.4",
Expand Down
1 change: 1 addition & 0 deletions packages/frosted-ui/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export * from './progress.props';
export { RadioGroup, RadioGroupItem, RadioGroupRoot } from './radio-group';
export * from './radio-group.props';
// export * from './radio-card-group';
export { Shine } from './lab/shine';
export {
Select,
SelectContent,
Expand Down
50 changes: 0 additions & 50 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 ffacada

Please sign in to comment.