-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update build output directory and import paths
Changed build output directory from 'lib' to 'dist' for consistency. Updated import paths to use '@/' alias for better readability and maintenance.
- Loading branch information
1 parent
3b64bca
commit 05febf4
Showing
3 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
node_modules/ | ||
lib/ | ||
dist/ | ||
coverage | ||
reports | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
// Components | ||
export { Focusable } from 'components/Focusable'; | ||
export { FocusRing } from 'components/FocusRing'; | ||
export { FocusTrap } from 'components/FocusTrap'; | ||
export { SkipLink } from 'components/SkipLink'; | ||
export { Focusable } from '@/components/Focusable'; | ||
export { FocusRing } from '@/components/FocusRing'; | ||
export { FocusTrap } from '@/components/FocusTrap'; | ||
export { SkipLink } from '@/components/SkipLink'; | ||
|
||
|
||
// Context | ||
export { FocusProvider, useFocusContext } from 'context/FocusContext'; | ||
export { FocusProvider, useFocusContext } from '@/context/FocusContext'; | ||
|
||
|
||
// Hooks | ||
export { useFocusOnMount } from 'hooks/useFocusOnMount'; | ||
export { useFocusOrder } from 'hooks/useFocusOrder'; | ||
export { useFocusReturn } from 'hooks/useFocusReturn'; | ||
export { useFocusVisible } from 'hooks/useFocusVisible'; | ||
export { useFocusWithin } from 'hooks/useFocusWithin'; | ||
export { useFocusOnMount } from '@/hooks/useFocusOnMount'; | ||
export { useFocusOrder } from '@/hooks/useFocusOrder'; | ||
export { useFocusReturn } from '@/hooks/useFocusReturn'; | ||
export { useFocusVisible } from '@/hooks/useFocusVisible'; | ||
export { useFocusWithin } from '@/hooks/useFocusWithin'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters