Skip to content

Commit 7357cfa

Browse files
committed
feat: update deps and cleanup examples
1 parent 8e17983 commit 7357cfa

File tree

7 files changed

+8683
-1151
lines changed

7 files changed

+8683
-1151
lines changed

lib/foo-test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { assert } from 'chai'
2+
import { foo } from './foo'
3+
4+
describe('foo', () => {
5+
it('loads', () => {
6+
assert.equal(foo, 'foo')
7+
})
8+
})

lib/foo.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const foo = 'foo'

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { serial } from './serial'
1+
export { foo } from './foo'

lib/serial-test.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

lib/serial.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)