File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const program = new Command();
1010program
1111 . name ( 'objectstack' )
1212 . description ( 'CLI for ObjectStack Protocol - Development Tools for Microkernel Architecture' )
13- . version ( '0.7.1 ' ) ;
13+ . version ( '0.8.0 ' ) ;
1414
1515// Add all commands
1616program . addCommand ( compileCommand ) ;
Original file line number Diff line number Diff line change @@ -48,15 +48,6 @@ export const serveCommand = new Command('serve')
4848 objects : config . objects || { } ,
4949 } ) ;
5050
51- const supportsUse = typeof ( kernel as any ) . use === 'function' ;
52- const supportsBootstrap = typeof ( kernel as any ) . bootstrap === 'function' ;
53-
54- if ( ! supportsUse || ! supportsBootstrap ) {
55- throw new Error (
56- 'Incompatible @objectstack/core version. Please use @objectstack/core@^0.8.0 or newer.'
57- ) ;
58- }
59-
6051 // Load plugins from configuration
6152 const plugins = config . plugins || [ ] ;
6253
You can’t perform that action at this time.
0 commit comments