Skip to content

Commit

Permalink
revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored May 8, 2024
1 parent d777bf9 commit 6072c84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"env": {
"node": true,
"es2020": true
"es2022": true
},
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": 11,
"ecmaVersion": 13,
"sourceType": "module"
},
"overrides": [
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const blueprint = packageFolderName.startsWith('jhipster-') ? `generator-${packa
runJHipster({
executableName,
executableVersion: version,
defaultCommand: 'app',
defaultCommand: 'migrate',
devBlueprintPath,
blueprints: {
[blueprint]: version,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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,js,ts,tsx,css,scss,vue,java}\"",
"prettier-format": "prettier --write \"{,**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java}\"",
Expand Down

0 comments on commit 6072c84

Please sign in to comment.