Skip to content

Commit

Permalink
fix: dir name bug (replace)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardojrmcom committed Jan 11, 2022
1 parent 7b0b98b commit 7007b2d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -38,7 +38,8 @@
"lint:fix": "eslint --fix .",
"prettier:fix": "prettier --write --ignore-unknown .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watchAll",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"prepare": "husky install",
"semantic-release": "semantic-release --branches main",
"sb": "start-storybook -p 1337 --ci -s ./public",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/index.ts
@@ -1,5 +1,5 @@
export { ExampleComponent } from './components/Example';
export type { ExampleComponentProps } from './components/Example';
export { ExampleComponent } from './components/_Example';
export type { ExampleComponentProps } from './components/_Example';

export { useExampleHook } from './hooks/useExampleHook';
export type { ExampleHookType } from './hooks/useExampleHook';
Expand Down

0 comments on commit 7007b2d

Please sign in to comment.