Skip to content

Commit

Permalink
init: import git command
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 22, 2024
1 parent c223813 commit 6526c3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generators/init/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import type { JHipsterCommandDefinition } from '../../lib/command/index.js';
import { GENERATOR_PROJECT_NAME } from '../generator-list.js';

const command: JHipsterCommandDefinition = {
const command = {
options: {},
import: [GENERATOR_PROJECT_NAME, 'jhipster:javascript:prettier', 'jhipster:javascript:husky'],
};
import: ['jhipster:git', GENERATOR_PROJECT_NAME, 'jhipster:javascript:prettier', 'jhipster:javascript:husky'],
} as const satisfies JHipsterCommandDefinition;

export default command;

0 comments on commit 6526c3d

Please sign in to comment.