Skip to content

Commit daf8102

Browse files
authored
v8.7.1 migration adjusts (#44)
1 parent 0896642 commit daf8102

File tree

5 files changed

+161
-18
lines changed

5 files changed

+161
-18
lines changed

.yo-rc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"generator-jhipster": {
33
"additionalSubGenerators": "jooq",
44
"baseName": "jooq",
5+
"caret": true,
56
"cli": true,
67
"entities": [],
78
"generators": {

cli/cli-customizations.cjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This file will not be overwritten by generate-blueprint
2+
module.exports = {
3+
printBlueprintLogo: () => {
4+
console.log('===================== JHipster jOOQ =====================');
5+
console.log('');
6+
},
7+
};

cli/cli.cjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ const blueprint = packageFolderName.startsWith('jhipster-') ? `generator-${packa
2323
[blueprint]: version,
2424
},
2525
printBlueprintLogo: () => {
26-
console.log('===================== JHipster jooq =====================');
26+
console.log('===================== JHipster Jooq =====================');
2727
console.log('');
2828
},
2929
lookups: [{ packagePaths: [packagePath] }],
30+
...require('./cli-customizations.cjs'),
3031
}).catch(done);
3132

3233
process.on('unhandledRejection', up => {

package-lock.json

Lines changed: 150 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"ejs-lint": "2.0.0",
58-
"eslint": "9.11.0",
58+
"eslint": "9.11.1",
5959
"eslint-config-prettier": "9.1.0",
6060
"eslint-plugin-prettier": "5.2.1",
6161
"globals": "15.9.0",

0 commit comments

Comments
 (0)