Skip to content

Commit

Permalink
feat: 🚚 file structure moved
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashRajpurohit committed Mar 16, 2024
1 parent 8b800ca commit ef1318d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
import { add, subtract } from './math';

export { add, subtract };

export default {
add,
subtract,
};
export * from './math/math';
2 changes: 1 addition & 1 deletion tests/math.test.ts → src/math/math.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, it, expect } from 'vitest';

import { add, subtract } from '~/math';
import { add, subtract } from '~/math/math';

describe('math', () => {
describe('add', () => {
Expand Down
File renamed without changes.

0 comments on commit ef1318d

Please sign in to comment.