Skip to content

Commit

Permalink
πŸ› fix(config): Update the path, otherwise the index.d.ts generated
Browse files Browse the repository at this point in the history
  • Loading branch information
kwooshung committed Jan 13, 2024
1 parent f56c079 commit 2ac4a40
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export { default as sortBubble } from '@/sorts/bubble';
export { default as sortShortBubble } from '@/sorts/bubble/short';
export { default as sortCocktail } from '@/sorts/cocktail';
export { default as sortCounting } from '@/sorts/counting';
export { default as sortOptimizedCounting } from '@/sorts/counting/optimized';
export { default as sortHeap } from '@/sorts/heap';
export { default as sortInsertion } from '@/sorts/insertion';
export { default as sortMerge } from '@/sorts/merge';
export { default as sortPancake } from '@/sorts/pancake';
export { default as sortQuick } from '@/sorts/quick';
export { default as sortRadix } from '@/sorts/radix';
export { default as sortSelection } from '@/sorts/selection';
export { default as sortShell } from '@/sorts/shell';
export { default as sortTim } from '@/sorts/tim';
export { default as sortBubble } from './sorts/bubble';
export { default as sortShortBubble } from './sorts/bubble/short';
export { default as sortCocktail } from './sorts/cocktail';
export { default as sortCounting } from './sorts/counting';
export { default as sortOptimizedCounting } from './sorts/counting/optimized';
export { default as sortHeap } from './sorts/heap';
export { default as sortInsertion } from './sorts/insertion';
export { default as sortMerge } from './sorts/merge';
export { default as sortPancake } from './sorts/pancake';
export { default as sortQuick } from './sorts/quick';
export { default as sortRadix } from './sorts/radix';
export { default as sortSelection } from './sorts/selection';
export { default as sortShell } from './sorts/shell';
export { default as sortTim } from './sorts/tim';

0 comments on commit 2ac4a40

Please sign in to comment.