Skip to content

Commit

Permalink
fix(core): properly export skeleZip
Browse files Browse the repository at this point in the history
`skeleZip` is properly exported, aslo in the classic module
  • Loading branch information
ognen committed Dec 26, 2018
1 parent a13ab40 commit 8b22b4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/classic/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as Subsystem from './subsystem'
import * as Kernel from './kernel'

import core, { defaultSubsystems } from './core'
import { data, zip } from '@skele/core'
import { data, zip, skeleZip } from '@skele/core'
import * as action from './action'
import * as registry from './registry'
import * as propNames from './propNames'
Expand Down Expand Up @@ -38,6 +38,7 @@ export {
enhance,
data,
zip,
skeleZip,
actions,
Engine,
EntryPoint,
Expand All @@ -52,6 +53,7 @@ export default {
...core,
data,
zip,
skeleZip,
actions,
Engine,
EntryPoint,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Cursor from './vendor/cursor'
const internal = {
Cursor,
}
export { data, registry, zip, log, propNames, internal }
export { data, registry, zip, skeleZip, log, propNames, internal }

export default {
data,
Expand Down

0 comments on commit 8b22b4c

Please sign in to comment.