Comparing version 3.9.0 to 3.9.1
import * as core from '@cordisjs/core'; | ||
import * as logger from '@cordisjs/logger'; | ||
import Schema from 'schemastery'; | ||
export * from '@cordisjs/core'; | ||
export { Schema }; | ||
export { default as Schema, default as z } from 'schemastery'; | ||
export { Logger } from '@cordisjs/logger'; | ||
export type EffectScope<C extends Context = Context> = core.EffectScope<C>; | ||
export type ForkScope<C extends Context = Context> = core.ForkScope<C>; | ||
export type MainScope<C extends Context = Context> = core.MainScope<C>; | ||
export interface EffectScope<C extends Context = Context> extends core.EffectScope<C> { | ||
} | ||
export interface ForkScope<C extends Context = Context> extends core.ForkScope<C> { | ||
} | ||
export interface MainScope<C extends Context = Context> extends core.MainScope<C> { | ||
} | ||
export interface Events<C extends Context = Context> extends core.Events<C> { | ||
@@ -11,0 +13,0 @@ } |
{ | ||
"name": "cordis", | ||
"description": "Meta-Framework for Modern JavaScript Applications", | ||
"version": "3.9.0", | ||
"version": "3.9.1", | ||
"type": "module", | ||
@@ -56,4 +56,4 @@ "main": "lib/index.cjs", | ||
"dependencies": { | ||
"@cordisjs/core": "3.9.0", | ||
"@cordisjs/loader": "^0.4.6", | ||
"@cordisjs/core": "3.9.1", | ||
"@cordisjs/loader": "^0.4.7", | ||
"@cordisjs/logger": "^0.2.0", | ||
@@ -60,0 +60,0 @@ "@cordisjs/timer": "^0.3.0", |
import * as core from '@cordisjs/core' | ||
import * as logger from '@cordisjs/logger' | ||
import { TimerService } from '@cordisjs/timer' | ||
import Schema from 'schemastery' | ||
export * from '@cordisjs/core' | ||
export { Schema } | ||
export { default as Schema, default as z } from 'schemastery' | ||
export { Logger } from '@cordisjs/logger' | ||
export type EffectScope<C extends Context = Context> = core.EffectScope<C> | ||
export type ForkScope<C extends Context = Context> = core.ForkScope<C> | ||
export type MainScope<C extends Context = Context> = core.MainScope<C> | ||
export interface EffectScope<C extends Context = Context> extends core.EffectScope<C> {} | ||
export interface ForkScope<C extends Context = Context> extends core.ForkScope<C> {} | ||
export interface MainScope<C extends Context = Context> extends core.MainScope<C> {} | ||
@@ -16,0 +13,0 @@ export interface Events<C extends Context = Context> extends core.Events<C> {} |
@@ -37,2 +37,6 @@ import { Logger } from '@cordisjs/logger' | ||
ctx.on('loader/entry', (type, entry) => { | ||
ctx.logger('loader').info('%s plugin %c', type, entry.name) | ||
}) | ||
ctx.loader.prolog = [] | ||
@@ -39,0 +43,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
40859
939
+ Added@cordisjs/core@3.9.1(transitive)
- Removed@cordisjs/core@3.9.0(transitive)
Updated@cordisjs/core@3.9.1
Updated@cordisjs/loader@^0.4.7