diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml index 7fd0ed5..87aeffc 100644 --- a/.github/workflows/generator.yml +++ b/.github/workflows/generator.yml @@ -9,6 +9,7 @@ jobs: timeout-minutes: 10 steps: - uses: actions/checkout@v4 + - uses: jhipster/actions/setup-git@v0 - uses: actions/setup-node@v4 with: node-version: 20 diff --git a/cli/cli-customizations.cjs b/cli/cli-customizations.cjs index 20a8a77..406ac42 100644 --- a/cli/cli-customizations.cjs +++ b/cli/cli-customizations.cjs @@ -1,2 +1,5 @@ // This file will not be overwritten by generate-blueprint -module.exports = {}; +module.exports = { + blueprints: undefined, + defaultCommand: 'migrate', +}; diff --git a/package.json b/package.json index 64a21c9..0c79879 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "scripts": { "ejslint": "ejslint generators/**/*.ejs", "lint": "eslint .", - "lint-fix": "npm run ejslint && npm run lint -- --fix", + "lint-fix": "npm run lint -- --fix", "prepare": "husky install", "prettier-check": "prettier --check \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"", "prettier-format": "prettier --write \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"",