@magnetarjs/core
Advanced tools
Comparing version 0.0.16 to 0.0.17
{ | ||
"name": "@magnetarjs/core", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"sideEffects": false, | ||
@@ -26,3 +26,3 @@ "description": "Magnetar core library.", | ||
"devDependencies": { | ||
"@magnetarjs/test-utils": "^0.0.7", | ||
"@magnetarjs/test-utils": "^0.0.8", | ||
"ava": "^3.15.0" | ||
@@ -71,3 +71,3 @@ }, | ||
}, | ||
"gitHead": "b749a010af8f47d2cd21837c92d4d10ca34375d9" | ||
"gitHead": "f7a673ab4aeaaee8b0599c78a10c241846e688db" | ||
} |
export * from './Magnetar' | ||
export { CollectionInstance } from './Collection' | ||
export { DocInstance } from './Doc' | ||
export * from './helpers/pathHelpers' | ||
export * from './types/plugins' | ||
@@ -8,2 +9,9 @@ export * from './types/actions' | ||
export * from './types/clauses' | ||
export * from './helpers/pathHelpers' | ||
export type { GlobalConfig, ModuleConfig } from './types/config' | ||
export type { | ||
EventFn, | ||
EventFnBefore, | ||
EventFnSuccess, | ||
EventFnError, | ||
EventFnRevert, | ||
} from './types/events' |
@@ -12,3 +12,2 @@ import { O } from 'ts-toolbelt' | ||
export { isDocModule, isCollectionModule } from './helpers/pathHelpers' | ||
export type { GlobalConfig, ModuleConfig } from './types/config' | ||
@@ -15,0 +14,0 @@ function configWithDefaults(config: GlobalConfig): O.Compulsory<GlobalConfig> { |
export * from './Magnetar'; | ||
export { CollectionInstance } from './Collection'; | ||
export { DocInstance } from './Doc'; | ||
export * from './helpers/pathHelpers'; | ||
export * from './types/plugins'; | ||
@@ -8,2 +9,3 @@ export * from './types/actions'; | ||
export * from './types/clauses'; | ||
export * from './helpers/pathHelpers'; | ||
export type { GlobalConfig, ModuleConfig } from './types/config'; | ||
export type { EventFn, EventFnBefore, EventFnSuccess, EventFnError, EventFnRevert, } from './types/events'; |
@@ -6,3 +6,2 @@ import { O } from 'ts-toolbelt'; | ||
export { isDocModule, isCollectionModule } from './helpers/pathHelpers'; | ||
export type { GlobalConfig, ModuleConfig } from './types/config'; | ||
/** | ||
@@ -9,0 +8,0 @@ * This is the global Magnetar instance that is returned when instantiating with Magnetar() |
250397
5668