Skip to content

Commit

Permalink
named export instead of default
Browse files Browse the repository at this point in the history
  • Loading branch information
crisconru committed Feb 25, 2024
1 parent ced92f6 commit 188e950
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { Splitea } from './splitea'
import Splitea from './splitea'

export default Splitea
export { Splitea }
2 changes: 1 addition & 1 deletion tests/splitea.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'node:path'
import * as v from 'valibot'
import { describe, test, expect } from 'vitest'
import { Image } from '../src/types'
import Splitea from '../src'
import { Splitea } from '../src'
import { OutputSchema, TilesSchema } from '../src/schemas'

const IMG_FOLDER = path.join(__dirname)
Expand Down

0 comments on commit 188e950

Please sign in to comment.