File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1818 */
1919import type { JHipsterCommandDefinition } from '../../lib/command/index.ts' ;
2020import {
21- GENERATOR_BASE ,
2221 GENERATOR_BOOTSTRAP ,
2322 GENERATOR_BOOTSTRAP_APPLICATION_BASE ,
2423 GENERATOR_CLIENT ,
@@ -80,7 +79,7 @@ const command = {
8079 } ,
8180 } ,
8281 import : [
83- GENERATOR_BASE ,
82+ 'base' ,
8483 GENERATOR_BOOTSTRAP ,
8584 GENERATOR_BOOTSTRAP_APPLICATION_BASE ,
8685 'jhipster:jdl:bootstrap' ,
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import assert from 'node:assert';
2121import { validations } from '../../../../lib/jhipster/index.ts' ;
2222import BaseApplicationGenerator from '../../../base-application/index.ts' ;
2323import { stringifyApplicationData } from '../../../base-application/support/index.ts' ;
24- import { GENERATOR_CLIENT , GENERATOR_SERVER } from '../../../generator-list.ts' ;
2524import type { Application , Entity , Field } from '../../types.d.ts' ;
2625
2726const {
@@ -39,8 +38,8 @@ export default class BootstrapApplicationGenerator extends BaseApplicationGenera
3938 throw new Error ( 'Only sbs blueprint is supported' ) ;
4039 }
4140
42- await this . dependsOnBootstrap ( GENERATOR_CLIENT ) ;
43- await this . dependsOnBootstrap ( GENERATOR_SERVER ) ;
41+ await this . dependsOnBootstrap ( 'client' ) ;
42+ await this . dependsOnBootstrap ( 'server' ) ;
4443 }
4544
4645 get preparing ( ) {
You can’t perform that action at this time.
0 commit comments