-
-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #518 from mshima/v7.2.0
Sync with v7.2.0
- Loading branch information
Showing
48 changed files
with
9,974 additions
and
16,469 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install lint-staged |
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,3 +1,3 @@ | ||
module.exports = { | ||
'{,src/**/,webpack/}*.{md,json,yml,html,js,ts,tsx,css,scss,java}': ['prettier --write'], | ||
'{,src/**/,webpack/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss,java}': ['prettier --write'], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.gitignore | ||
npmw.cmd | ||
mvnw.cmd | ||
package.json | ||
pom.xml | ||
README.md | ||
src/main/docker/app.yml | ||
src/main/docker/jhipster-registry.yml | ||
src/main/docker/jib/entrypoint.sh | ||
src/main/resources/banner.txt | ||
src/main/resources/config/application.yml | ||
src/main/resources/config/application-dev.yml | ||
src/main/resources/config/application-prod.yml | ||
src/main/resources/config/bootstrap.yml | ||
src/main/resources/config/bootstrap-prod.yml | ||
src/main/java/tech/jhipster/registry/ApplicationWebXml.java | ||
src/test/java/tech/jhipster/registry/IntegrationTest.java | ||
src/main/java/tech/jhipster/registry/JHipsterRegistryApp.java | ||
src/main/java/tech/jhipster/registry/config/ApplicationProperties.java | ||
src/main/java/tech/jhipster/registry/config/LoggingConfiguration.java | ||
src/main/java/tech/jhipster/registry/config/SecurityConfiguration.java | ||
src/main/java/tech/jhipster/registry/security/SecurityUtils.java | ||
src/main/java/tech/jhipster/registry/config/WebConfigurer.java | ||
src/main/java/tech/jhipster/registry/web/rest/AccountResource.java | ||
src/main/webapp/app/app.module.ts | ||
src/main/webapp/app/app-routing.module.ts | ||
src/main/webapp/app/config/font-awesome-icons.ts | ||
src/main/webapp/app/core/auth/state-storage.service.ts | ||
src/main/webapp/app/entities/entity-routing.module.ts | ||
src/main/webapp/app/layouts/profiles/** | ||
src/main/webapp/app/layouts/footer/** | ||
src/main/webapp/app/layouts/main/** | ||
src/main/webapp/app/layouts/navbar/** | ||
src/main/webapp/app/home/** | ||
src/main/webapp/app/shared/shared.module.ts | ||
src/main/webapp/content/scss/global.scss | ||
src/test/java/tech/jhipster/registry/web/rest/errors/ExceptionTranslatorIT.java | ||
src/test/resources/config/application.yml | ||
src/test/resources/logback.xml | ||
webpack/proxy.conf.js |
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,38 @@ | ||
# Synching with generator-jhipster | ||
|
||
JHipster Registry is generated with generator-jhipster. | ||
The following is a base workflow to regenerate JHisper Registry using a new generator-jhipster release. | ||
|
||
Update JHipster: | ||
|
||
``` | ||
npm install generator-jhipster@latest | ||
``` | ||
|
||
Regenerate non-customized files using latest jhipster: | ||
|
||
``` | ||
jhipster --prefer-local --skip-install | ||
``` | ||
|
||
Regenerate customized files and check for required changes (eg: package.json, pom.xml): | ||
|
||
``` | ||
jhipster --prefer-local --skip-yo-resolve --skip-install | ||
``` | ||
|
||
Manually commit required change and then cleanup changes: | ||
|
||
``` | ||
git reset --hard | ||
git clean -fd | ||
``` | ||
|
||
Regenerate dependencies: | ||
|
||
``` | ||
rm -rf node_modules package-lock.json | ||
./npmw install | ||
git add package-lock.json | ||
git commit -m "Regenerate dependencies" | ||
``` |
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
Oops, something went wrong.