Skip to content

Commit

Permalink
fix(module): Fix module exports across project
Browse files Browse the repository at this point in the history
  • Loading branch information
felixjung authored and Khaledgarbaya committed Apr 10, 2017
1 parent 714c3af commit fbc3611
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
13 changes: 9 additions & 4 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
export { default as utils } from './utils'
export { default as get } from './get'
export { default as push } from './push'
export { default as transform } from './transform'
import * as utils from './utils'
import * as get from './get'
import * as push from './push'
import * as transform from './transform'

export { utils }
export { get }
export { push }
export { transform }
14 changes: 10 additions & 4 deletions lib/push/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
export { default as assets } from './assets'
export { default as creation } from './creation'
export { default as deletion } from './deletion'
export { default as publishing } from './publishing'
import * as assets from './assets'
import * as creation from './creation'
import * as deletion from './deletion'
import * as publishing from './publishing'

export { assets }
export { creation }
export { deletion }
export { publishing }

export { default as getEntityName } from './get-entity-name'
export { default as pushToSpace } from './push-to-space'
4 changes: 3 additions & 1 deletion lib/transform/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export { default as transformers } from './transformers'
import * as transformers from './transformers'

export { transformers }
export { default as transformSpace } from './transform-space'

0 comments on commit fbc3611

Please sign in to comment.