-
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update .yo-resolve * Update .yo-resolve * Create cli-customizations.cjs * Update generator-jhipster to 8.7.3 * recreate package-lock * adjusts * lint fix * apply prettier * adjusts * adjusts * add workspaces * adjust * adjusts * adjusts * adjust .editorconfig * adjusts * adjusts * update generator-jhipster to git * update git snapshot * update git snapshot * adjusts * adjusts * lint fix * adjusts * adjusts * regenerate package-lock * update snapshot * update Dockerfile * update node version * update snapshot --------- Co-authored-by: mshima <[email protected]>
- Loading branch information
Showing
70 changed files
with
6,473 additions
and
10,069 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ package-lock.json | |
.git | ||
|
||
# blueprint rules: | ||
**/templates/**/ | ||
generators/**/templates/**/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# Prettier configuration | ||
|
||
printWidth: 140 | ||
singleQuote: true | ||
tabWidth: 2 | ||
useTabs: false | ||
|
||
# js and ts rules: | ||
arrowParens: avoid | ||
bracketSameLine: false | ||
plugins: | ||
- prettier-plugin-packagejson |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
cli/cli.cjs skip | ||
generators/** skip | ||
.blueprint/** skip | ||
.eslintrc.json skip | ||
.gitattributes | ||
.github/** skip | ||
README.md skip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// This file will not be overwritten by generate-blueprint | ||
module.exports = { | ||
printLogo: async () => { | ||
const { getLogo } = await import('./logo.js'); | ||
const { version } = require('../package.json'); | ||
console.log(getLogo(version)); | ||
}, | ||
printBlueprintLogo: undefined, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import globals from 'globals'; | ||
import prettier from 'eslint-plugin-prettier/recommended'; | ||
import jhipster from 'generator-jhipster/eslint'; | ||
// jhipster-needle-eslint-add-import - JHipster will add additional import here | ||
|
||
export default [ | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
}, | ||
}, | ||
}, | ||
{ ignores: ['coverage/**'] }, | ||
jhipster.recommended, | ||
// jhipster-needle-eslint-add-config - JHipster will add additional config here | ||
prettier, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { asCommand } from 'generator-jhipster'; | ||
|
||
export default asCommand({ | ||
configs: {}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export { default } from './generator.js'; | ||
export { default as command } from './command.js'; |
Oops, something went wrong.