Skip to content

Commit be7f674

Browse files
committed
Non default export in index
1 parent 1b9995b commit be7f674

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import ProcessSystem from './processes/process_system'
22

3-
export default ProcessSystem
3+
export {ProcessSystem}

test/processes_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava'
2-
import ProcessSystem from '../src/index'
2+
import {ProcessSystem} from '../src/index'
33

44
let system = null
55

0 commit comments

Comments
 (0)