generator-jhipster 8.4.0 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generators/angular/resources/package.json +10 -10
- package/dist/generators/angular/templates/src/main/webapp/app/account/password-reset/finish/password-reset-finish.component.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/account/password-reset/finish/password-reset-finish.component.ts.ejs +3 -6
- package/dist/generators/angular/templates/src/main/webapp/app/account/password-reset/init/password-reset-init.component.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/account/password-reset/init/password-reset-init.component.ts.ejs +3 -6
- package/dist/generators/angular/templates/src/main/webapp/app/account/register/register.component.ts.ejs +3 -6
- package/dist/generators/angular/templates/src/main/webapp/app/admin/metrics/blocks/metrics-modal-threads/metrics-modal-threads.component.html.ejs +11 -11
- package/dist/generators/angular/templates/src/main/webapp/app/admin/user-management/delete/user-management-delete-dialog.component.html.ejs +0 -2
- package/dist/generators/angular/templates/src/main/webapp/app/core/auth/user-route-access.service.ts.ejs +1 -1
- package/dist/generators/angular/templates/src/main/webapp/app/entities/_entityFolder_/delete/_entityFile_-delete-dialog.component.html.ejs +0 -3
- package/dist/generators/angular/templates/src/main/webapp/app/entities/_entityFolder_/detail/_entityFile_-detail.component.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/entities/_entityFolder_/route/_entityFile_-routing-resolve.service.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/entities/_entityFolder_/update/_entityFile_-update.component.spec.ts.ejs +3 -3
- package/dist/generators/angular/templates/src/main/webapp/app/entities/_entityFolder_/update/_entityFile_-update.component.ts.ejs +11 -17
- package/dist/generators/angular/templates/src/main/webapp/app/layouts/navbar/active-menu.directive.ts.ejs +3 -3
- package/dist/generators/angular/templates/src/main/webapp/app/login/login.component.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/login/login.component.ts.ejs +3 -4
- package/dist/generators/angular/templates/src/main/webapp/app/shared/alert/alert-error.component.spec.ts.ejs +2 -2
- package/dist/generators/angular/templates/src/main/webapp/app/shared/auth/has-any-authority.directive.spec.ts.ejs +10 -8
- package/dist/generators/angular/templates/src/main/webapp/app/shared/auth/has-any-authority.directive.ts.ejs +3 -8
- package/dist/generators/angular/templates/src/main/webapp/app/shared/filter/filter.component.html.ejs +6 -2
- package/dist/generators/app/generator.js +4 -13
- package/dist/generators/base/generator.js +15 -16
- package/dist/generators/base/priorities.js +12 -1
- package/dist/generators/base-application/generator.js +14 -2
- package/dist/generators/base-application/priorities.js +1 -0
- package/dist/generators/base-application/support/prepare-entity.js +7 -8
- package/dist/generators/base-application/support/prepare-relationship.js +3 -2
- package/dist/generators/base-core/generator.js +40 -9
- package/dist/generators/bootstrap-application-base/generator.js +7 -3
- package/dist/generators/bootstrap-application-server/generator.js +1 -0
- package/dist/generators/client/command.js +2 -2
- package/dist/generators/client/generators/common/command.js +5 -0
- package/dist/generators/client/generators/common/generator.js +79 -0
- package/dist/generators/client/generators/common/index.js +20 -0
- package/dist/generators/client/generators/common/templates/src/main/webapp/app/shared/jhipster/headers.ts.ejs +57 -0
- package/dist/generators/client/generators/common/templates/src/main/webapp/app/shared/jhipster/problem-details.ts.ejs +51 -0
- package/dist/generators/client/resources/package.json +4 -4
- package/dist/generators/common/generator.js +5 -0
- package/dist/generators/common/resources/package.json +2 -2
- package/dist/generators/cypress/templates/src/test/javascript/cypress/e2e/account/login-page.cy.ts.ejs +4 -4
- package/dist/generators/cypress/templates/src/test/javascript/cypress/e2e/account/password-page.cy.ts.ejs +2 -2
- package/dist/generators/cypress/templates/src/test/javascript/cypress/e2e/account/register-page.cy.ts.ejs +1 -1
- package/dist/generators/cypress/templates/src/test/javascript/cypress/e2e/account/reset-password-page.cy.ts.ejs +1 -1
- package/dist/generators/cypress/templates/src/test/javascript/cypress/e2e/entity/_entity_.cy.ts.ejs +10 -10
- package/dist/generators/docker/templates/docker/mysql.yml.ejs +1 -1
- package/dist/generators/docker/templates/docker/realm-config/jhipster-realm.json.ejs +14 -3
- package/dist/generators/docker-compose/templates/realm-config/jhipster-realm.json.ejs +14 -3
- package/dist/generators/entity/generator.js +2 -10
- package/dist/generators/entity/prompts.js +6 -11
- package/dist/generators/gatling/README.md +15 -0
- package/dist/generators/gatling/templates/src/test/java/gatling/simulations/_entityClass_GatlingTest.java.ejs +2 -10
- package/dist/generators/generate-blueprint/command.js +16 -0
- package/dist/generators/generate-blueprint/files.js +8 -0
- package/dist/generators/generate-blueprint/generator.js +17 -10
- package/dist/generators/generate-blueprint/resources/package.json +1 -1
- package/dist/generators/generate-blueprint/templates/.blueprint/cli/commands.mjs.ejs +6 -0
- package/dist/generators/generate-blueprint/templates/.blueprint/generate-sample/command.mjs.ejs +20 -0
- package/dist/generators/generate-blueprint/templates/.blueprint/generate-sample/generator.mjs.ejs +9 -13
- package/dist/generators/generate-blueprint/templates/.blueprint/github-build-matrix/build-matrix.mjs.ejs +22 -0
- package/dist/generators/generate-blueprint/templates/.blueprint/github-build-matrix/generator.mjs.ejs +24 -0
- package/dist/generators/generate-blueprint/templates/.blueprint/github-build-matrix/index.mjs.ejs +1 -0
- package/dist/generators/generate-blueprint/templates/.eslintrc.json.ejs +2 -2
- package/dist/generators/generate-blueprint/templates/README.md.ejs +16 -8
- package/dist/generators/generate-blueprint/templates/vitest.config.ts.ejs +1 -0
- package/dist/generators/generator-constants.js +1 -1
- package/dist/generators/info/generator.js +1 -3
- package/dist/generators/init/generator.js +2 -2
- package/dist/generators/init/resources/.node-version +1 -1
- package/dist/generators/java/generators/build-tool/command.js +4 -1
- package/dist/generators/java/generators/domain/templates/src/main/java/_package_/_entityPackage_/domain/_persistClass_.java.jhi.ejs +1 -5
- package/dist/generators/java/generators/domain/templates/src/test/java/_package_/_entityPackage_/domain/_persistClass_Asserts.java.ejs +3 -3
- package/dist/generators/java/generators/domain/templates/src/test/java/_package_/_entityPackage_/domain/_persistClass_Test.java.ejs +3 -3
- package/dist/generators/java/support/add-java-annotation.js +28 -7
- package/dist/generators/java/support/generated-annotation-transform.js +1 -1
- package/dist/generators/java/support/index.js +1 -1
- package/dist/generators/jdl/generator.js +1 -1
- package/dist/generators/kubernetes/files.js +1 -1
- package/dist/generators/kubernetes/templates/db/mysql.yml.ejs +0 -1
- package/dist/generators/kubernetes/templates/keycloak/keycloak-configmap.yml.ejs +14 -3
- package/dist/generators/languages/generator.js +4 -2
- package/dist/generators/maven/templates/.mvn/wrapper/maven-wrapper.properties +2 -2
- package/dist/generators/maven/templates/mvnw +185 -243
- package/dist/generators/maven/templates/mvnw.cmd +121 -180
- package/dist/generators/react/generator.js +10 -0
- package/dist/generators/react/resources/package.json +24 -24
- package/dist/generators/react/templates/src/main/webapp/app/config/axios-interceptor.spec.ts.ejs +1 -1
- package/dist/generators/react/templates/src/main/webapp/app/config/axios-interceptor.ts.ejs +1 -1
- package/dist/generators/react/templates/src/main/webapp/app/config/notification-middleware.spec.ts.ejs +1 -1
- package/dist/generators/react/templates/src/main/webapp/app/config/notification-middleware.ts.ejs +80 -87
- package/dist/generators/react/templates/src/main/webapp/app/config/store.ts.ejs +1 -1
- package/dist/generators/react/templates/src/main/webapp/app/entities/_entityFolder_/_entityFile_-update.tsx.ejs +3 -3
- package/dist/generators/react/templates/src/main/webapp/app/entities/_entityFolder_/_entityFile_.reducer.ts.ejs +12 -7
- package/dist/generators/react/templates/src/main/webapp/app/shared/reducers/reducer.utils.ts.ejs +2 -3
- package/dist/generators/server/command.js +0 -11
- package/dist/generators/server/generator.js +9 -70
- package/dist/generators/server/jdl/application-definition.js +3 -1
- package/dist/generators/server/resources/Dockerfile +12 -12
- package/dist/generators/server/resources/gradle/libs.versions.toml +7 -5
- package/dist/generators/server/resources/pom.xml +7 -7
- package/dist/generators/server/support/config.js +4 -8
- package/dist/generators/server/support/prepare-entity.js +5 -6
- package/dist/generators/server/support/relationship.js +5 -2
- package/dist/generators/server/templates/build.gradle.ejs +5 -3
- package/dist/generators/server/templates/gradle/profile_dev.gradle.ejs +1 -0
- package/dist/generators/server/templates/gradle/profile_prod.gradle.ejs +1 -0
- package/dist/generators/server/templates/gradle.properties.ejs +1 -1
- package/dist/generators/server/templates/pom.xml.ejs +7 -5
- package/dist/generators/server/templates/src/main/java/_package_/_entityPackage_/service/dto/_dtoClass_.java.ejs +1 -1
- package/dist/generators/server/templates/src/main/java/_package_/config/Constants.java.ejs +0 -2
- package/dist/generators/server/templates/src/main/java/_package_/config/SecurityConfiguration_imperative.java.ejs +1 -18
- package/dist/generators/server/templates/src/main/java/_package_/config/SecurityConfiguration_reactive.java.ejs +1 -15
- package/dist/generators/server/templates/src/main/java/_package_/config/SecurityJwtConfiguration.java.ejs +0 -20
- package/dist/generators/server/templates/src/main/java/_package_/security/SecurityUtils.java.ejs +65 -5
- package/dist/generators/server/templates/src/main/java/_package_/service/dto/UserDTO.java.ejs +23 -0
- package/dist/generators/server/templates/src/main/java/_package_/service/mapper/UserMapper.java.ejs +8 -4
- package/dist/generators/server/templates/src/main/java/_package_/web/rest/AccountResource_skipUserManagement.java.ejs +43 -9
- package/dist/generators/server/templates/src/main/resources/config/application.yml.ejs +59 -21
- package/dist/generators/server/templates/src/main/resources/swagger/api.yml.ejs +1 -1
- package/dist/generators/server/templates/src/test/java/_package_/security/DomainUserDetailsServiceIT.java.ejs +31 -13
- package/dist/generators/server/templates/src/test/java/_package_/service/mapper/UserMapperTest.java.ejs +84 -17
- package/dist/generators/server/templates/src/test/java/_package_/web/rest/AccountResourceIT.java.ejs +62 -6
- package/dist/generators/server/templates/src/test/java/_package_/web/rest/AccountResourceIT_oauth2.java.ejs +22 -0
- package/dist/generators/server/templates/src/test/resources/config/application.yml.ejs +20 -10
- package/dist/generators/spring-boot/command.js +117 -6
- package/dist/generators/spring-boot/files.js +0 -5
- package/dist/generators/spring-boot/generator.js +40 -7
- package/dist/generators/spring-boot/prompts.js +6 -70
- package/dist/generators/spring-boot/resources/spring-boot-dependencies.pom +368 -576
- package/dist/generators/spring-boot/templates/src/test/java/_package_/_entityPackage_/service/UserServiceIT.java.ejs +47 -11
- package/dist/generators/spring-boot/templates/src/test/java/_package_/_entityPackage_/web/rest/PublicUserResourceIT.java.ejs +60 -24
- package/dist/generators/spring-boot/templates/src/test/java/_package_/_entityPackage_/web/rest/UserResourceIT.java.ejs +195 -318
- package/dist/generators/spring-boot/templates/src/test/java/_package_/_entityPackage_/web/rest/_entityClass_ResourceIT.java.ejs +58 -51
- package/dist/generators/spring-cache/internal/dependencies.js +2 -2
- package/dist/generators/spring-cache/resources/gradle/libs.versions.toml +1 -1
- package/dist/generators/spring-cloud/generators/gateway/command.js +5 -1
- package/dist/generators/spring-cloud/generators/gateway/generator.js +13 -0
- package/dist/generators/spring-cloud/generators/gateway/jdl/jdl-routes-option.js +6 -0
- package/dist/generators/spring-data-cassandra/generator.js +2 -2
- package/dist/generators/spring-data-relational/templates/src/test/java/_package_/config/SqlTestContainersSpringContextCustomizerFactory.java.ejs +3 -1
- package/dist/generators/vue/resources/package.json +15 -15
- package/dist/generators/vue/templates/src/main/webapp/app/admin/tracker/tracker.service.spec.ts.ejs +1 -1
- package/dist/generators/vue/templates/src/main/webapp/app/entities/_entityFolder_/_entityFile_-details.vue.ejs +1 -1
- package/dist/generators/vue/templates/src/main/webapp/app/entities/_entityFolder_/_entityFile_-update.vue.ejs +1 -1
- package/dist/generators/vue/templates/src/main/webapp/app/entities/_entityFolder_/_entityFile_.vue.ejs +1 -1
- package/dist/generators/vue/templates/src/main/webapp/app/shared/alert/alert.service.spec.ts.ejs +8 -8
- package/dist/generators/vue/templates/src/main/webapp/app/shared/data/data-utils.service.spec.ts.ejs +1 -1
- package/dist/generators/vue/templates/tsconfig.app.json.ejs +1 -1
- package/dist/generators/vue/templates/vite.config.mts.ejs +5 -4
- package/dist/jdl/converters/jdl-to-json/jdl-to-json-basic-entity-converter.js +1 -1
- package/dist/jdl/converters/jdl-to-json/jdl-to-json-field-converter.js +4 -4
- package/dist/jdl/converters/jdl-to-json/jdl-with-applications-to-json-converter.js +9 -9
- package/dist/jdl/converters/jdl-to-json/jdl-without-application-to-json-converter.js +2 -2
- package/dist/jdl/converters/json-to-jdl-application-converter.js +1 -1
- package/dist/jdl/converters/json-to-jdl-converter.js +6 -5
- package/dist/jdl/converters/json-to-jdl-entity-converter.js +14 -14
- package/dist/jdl/converters/json-to-jdl-option-converter.js +1 -2
- package/dist/jdl/converters/parsed-jdl-to-jdl-object/application-converter.js +1 -1
- package/dist/jdl/converters/parsed-jdl-to-jdl-object/option-converter.js +2 -2
- package/dist/jdl/converters/parsed-jdl-to-jdl-object/parsed-jdl-to-jdl-object-converter.js +7 -6
- package/dist/jdl/converters/parsed-jdl-to-jdl-object/validation-converter.js +1 -1
- package/dist/jdl/exporters/applications/jhipster-application-formatter.js +16 -23
- package/dist/jdl/exporters/config.js +1 -0
- package/dist/jdl/exporters/jhipster-deployment-exporter.js +5 -5
- package/dist/jdl/exporters/jhipster-entity-exporter.js +1 -1
- package/dist/jdl/jdl-importer.js +22 -20
- package/dist/jdl/jhipster/binary-options.js +12 -8
- package/dist/jdl/jhipster/json-entity.js +1 -1
- package/dist/jdl/models/abstract-jdl-option.js +2 -2
- package/dist/jdl/models/jdl-application-configuration-factory.js +2 -0
- package/dist/jdl/models/jdl-binary-option.js +2 -2
- package/dist/jdl/models/jdl-deployment.js +11 -0
- package/dist/jdl/models/jdl-entity.js +1 -1
- package/dist/jdl/models/jdl-enum.js +1 -1
- package/dist/jdl/models/jdl-enums.js +0 -18
- package/dist/jdl/models/jdl-field.js +2 -2
- package/dist/jdl/models/jdl-object-wrapper.js +1 -0
- package/dist/jdl/models/jdl-object.js +23 -45
- package/dist/jdl/models/jdl-options.js +0 -18
- package/dist/jdl/models/jdl-relationships.js +8 -16
- package/dist/jdl/models/jdl-unary-option.js +1 -1
- package/dist/jdl/models/list-jdl-application-configuration-option.js +5 -2
- package/dist/jdl/parsing/jdl-ast-builder-visitor.js +12 -0
- package/dist/jdl/parsing/jdl-parser.js +14 -0
- package/dist/jdl/parsing/lexer/lexer.js +17 -11
- package/dist/jdl/parsing/validator.js +16 -2
- package/dist/jdl/readers/json-reader.js +1 -1
- package/dist/jdl/utils/array-utils.js +6 -0
- package/dist/jdl/utils/set-utils.js +3 -2
- package/dist/jdl/validators/jdl-without-application-validator.js +2 -2
- package/dist/testing/helpers.js +4 -0
- package/dist/types/generators/base/api.d.ts +5 -1
- package/dist/types/generators/base/generator.d.ts +10 -4
- package/dist/types/generators/base/priorities.d.ts +4 -0
- package/dist/types/generators/base/shared-data.d.ts +1 -1
- package/dist/types/generators/base-application/priorities.d.ts +2 -0
- package/dist/types/generators/base-application/support/entity.d.ts +2 -2
- package/dist/types/generators/base-application/support/prepare-entity.d.ts +3 -3
- package/dist/types/generators/base-application/support/relationship.d.ts +5 -5
- package/dist/types/generators/base-core/generator.d.ts +16 -1
- package/dist/types/generators/generator-constants.d.ts +1 -1
- package/dist/types/generators/java/support/add-java-annotation.d.ts +10 -20
- package/dist/types/generators/java/support/doc.d.ts +1 -1
- package/dist/types/generators/java/support/index.d.ts +1 -1
- package/dist/types/generators/server/support/relationship.d.ts +2 -2
- package/dist/types/generators/server/types.d.ts +5 -0
- package/dist/types/generators/spring-cloud/generators/gateway/jdl/jdl-routes-option.d.ts +2 -0
- package/dist/types/generators/spring-cloud/generators/gateway/types.d.ts +4 -0
- package/dist/types/jdl/converters/jdl-to-json/jdl-to-json-field-converter.d.ts +2 -2
- package/dist/types/jdl/converters/jdl-to-json/jdl-with-applications-to-json-converter.d.ts +2 -1
- package/dist/types/jdl/converters/jdl-to-json/jdl-without-application-to-json-converter.d.ts +3 -1
- package/dist/types/jdl/converters/json-to-jdl-application-converter.d.ts +9 -2
- package/dist/types/jdl/converters/json-to-jdl-converter.d.ts +3 -3
- package/dist/types/jdl/converters/json-to-jdl-entity-converter.d.ts +2 -4
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/application-converter.d.ts +3 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/deployment-converter.d.ts +2 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/entity-converter.d.ts +3 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/enum-converter.d.ts +2 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/field-converter.d.ts +2 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/option-converter.d.ts +3 -3
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/parsed-jdl-to-jdl-object-converter.d.ts +2 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/relationship-converter.d.ts +2 -1
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/types.d.ts +110 -0
- package/dist/types/jdl/converters/parsed-jdl-to-jdl-object/validation-converter.d.ts +2 -1
- package/dist/types/jdl/converters/types.d.ts +102 -14
- package/dist/types/jdl/exporters/applications/jhipster-application-formatter.d.ts +4 -4
- package/dist/types/jdl/exporters/config.d.ts +2 -1
- package/dist/types/jdl/exporters/export-utils.d.ts +2 -1
- package/dist/types/jdl/exporters/jdl-exporter.d.ts +2 -1
- package/dist/types/jdl/exporters/jhipster-deployment-exporter.d.ts +3 -1
- package/dist/types/jdl/exporters/jhipster-entity-exporter.d.ts +3 -1
- package/dist/types/jdl/exporters/types.d.ts +61 -0
- package/dist/types/jdl/jhipster/binary-options.d.ts +8 -26
- package/dist/types/jdl/jhipster/field-types.d.ts +2 -2
- package/dist/types/jdl/jhipster/json-entity.d.ts +2 -2
- package/dist/types/jdl/models/abstract-jdl-option.d.ts +14 -9
- package/dist/types/jdl/models/boolean-jdl-application-configuration-option.d.ts +1 -1
- package/dist/types/jdl/models/integer-jdl-application-configuration-option.d.ts +1 -1
- package/dist/types/jdl/models/jdl-application-configuration-factory.d.ts +1 -1
- package/dist/types/jdl/models/jdl-application-configuration-option.d.ts +4 -4
- package/dist/types/jdl/models/jdl-application-configuration.d.ts +4 -4
- package/dist/types/jdl/models/jdl-application-definition.d.ts +4 -4
- package/dist/types/jdl/models/jdl-application-entities.d.ts +4 -4
- package/dist/types/jdl/models/jdl-application.d.ts +16 -13
- package/dist/types/jdl/models/jdl-binary-option.d.ts +5 -3
- package/dist/types/jdl/models/jdl-deployment.d.ts +13 -1
- package/dist/types/jdl/models/jdl-entity.d.ts +5 -5
- package/dist/types/jdl/models/jdl-enum-value.d.ts +4 -4
- package/dist/types/jdl/models/jdl-enum.d.ts +9 -5
- package/dist/types/jdl/models/jdl-enums.d.ts +6 -5
- package/dist/types/jdl/models/jdl-field.d.ts +10 -8
- package/dist/types/jdl/models/jdl-object-wrapper.d.ts +25 -0
- package/dist/types/jdl/models/jdl-object.d.ts +23 -19
- package/dist/types/jdl/models/jdl-options.d.ts +7 -24
- package/dist/types/jdl/models/jdl-relationship.d.ts +16 -10
- package/dist/types/jdl/models/jdl-relationships.d.ts +5 -5
- package/dist/types/jdl/models/jdl-validation.d.ts +3 -3
- package/dist/types/jdl/models/list-jdl-application-configuration-option.d.ts +4 -3
- package/dist/types/jdl/models/string-jdl-application-configuration-option.d.ts +2 -2
- package/dist/types/jdl/parsing/jdl-ast-builder-visitor.d.ts +1 -0
- package/dist/types/jdl/parsing/jdl-parser.d.ts +1 -0
- package/dist/types/jdl/parsing/jdl-parsing-types.d.ts +23 -0
- package/dist/types/jdl/parsing/lexer/lexer.d.ts +6 -2
- package/dist/types/jdl/parsing/validator.d.ts +1 -1
- package/dist/types/jdl/utils/array-utils.d.ts +1 -0
- package/dist/types/jdl/utils/set-utils.d.ts +1 -19
- package/dist/types/jdl/validators/deployment-validator.d.ts +2 -1
- package/dist/types/testing/helpers.d.ts +13 -3
- package/package.json +24 -23
- /package/dist/jdl/converters/{types.js → parsed-jdl-to-jdl-object/types.js} +0 -0
|
@@ -21,34 +21,38 @@ import JDLRelationships from './jdl-relationships.js';
|
|
|
21
21
|
import JDLOptions from './jdl-options.js';
|
|
22
22
|
import JDLEntity from './jdl-entity.js';
|
|
23
23
|
import JDLRelationship from './jdl-relationship.js';
|
|
24
|
+
import AbstractJDLOption from './abstract-jdl-option.js';
|
|
25
|
+
import JDLEnum from './jdl-enum.js';
|
|
26
|
+
import JDLDeployment from './jdl-deployment.js';
|
|
27
|
+
import JDLApplication from './jdl-application.js';
|
|
24
28
|
/**
|
|
25
29
|
* The JDL object class, containing applications, entities etc.
|
|
26
30
|
*/
|
|
27
31
|
export default class JDLObject {
|
|
28
|
-
applications: Record<string,
|
|
29
|
-
deployments: Record<string,
|
|
32
|
+
applications: Record<string, JDLApplication>;
|
|
33
|
+
deployments: Record<string, JDLDeployment>;
|
|
30
34
|
entities: Record<string, JDLEntity>;
|
|
31
35
|
enums: JDLEnums;
|
|
32
36
|
relationships: JDLRelationships;
|
|
33
37
|
options: JDLOptions;
|
|
34
38
|
constructor();
|
|
35
|
-
getOptions():
|
|
39
|
+
getOptions(): AbstractJDLOption[];
|
|
36
40
|
/**
|
|
37
41
|
* Adds or replaces an application.
|
|
38
42
|
* @param application the application.
|
|
39
43
|
*/
|
|
40
|
-
addApplication(application:
|
|
44
|
+
addApplication(application: JDLApplication): void;
|
|
41
45
|
getApplicationQuantity(): number;
|
|
42
|
-
getApplication(applicationName:
|
|
43
|
-
getApplications():
|
|
44
|
-
forEachApplication(passedFunction:
|
|
46
|
+
getApplication(applicationName: string): JDLApplication | undefined;
|
|
47
|
+
getApplications(): JDLApplication[];
|
|
48
|
+
forEachApplication(passedFunction: (app: JDLApplication) => void | undefined | null): void;
|
|
45
49
|
/**
|
|
46
50
|
* Adds or replaces a deployment.
|
|
47
51
|
* @param deployment the deployment.
|
|
48
52
|
*/
|
|
49
|
-
addDeployment(deployment:
|
|
53
|
+
addDeployment(deployment: JDLDeployment): void;
|
|
50
54
|
getDeploymentQuantity(): number;
|
|
51
|
-
forEachDeployment(passedFunction:
|
|
55
|
+
forEachDeployment(passedFunction: (deployment: JDLDeployment, index: number, array: string[]) => void): void;
|
|
52
56
|
/**
|
|
53
57
|
* Adds or replaces an entity.
|
|
54
58
|
* @param entity the entity to add.
|
|
@@ -63,20 +67,20 @@ export default class JDLObject {
|
|
|
63
67
|
* Adds or replaces an enum.
|
|
64
68
|
* @param enumToAdd the enum to add.
|
|
65
69
|
*/
|
|
66
|
-
addEnum(enumToAdd:
|
|
67
|
-
hasEnum(enumName:
|
|
68
|
-
getEnum(enumName:
|
|
70
|
+
addEnum(enumToAdd: JDLEnum): void;
|
|
71
|
+
hasEnum(enumName: string): boolean;
|
|
72
|
+
getEnum(enumName: string): JDLEnum | undefined;
|
|
69
73
|
getEnumQuantity(): number;
|
|
70
|
-
forEachEnum(passedFunction:
|
|
71
|
-
addRelationship(relationship:
|
|
74
|
+
forEachEnum(passedFunction: (jdlEnum: JDLEnum) => void): void;
|
|
75
|
+
addRelationship(relationship: JDLRelationship): void;
|
|
72
76
|
getRelationshipQuantity(applicationName?: string): number;
|
|
73
|
-
forEachRelationship(passedFunction
|
|
77
|
+
forEachRelationship(passedFunction: (relationship: JDLRelationship) => void): void;
|
|
74
78
|
getRelationships(): JDLRelationship[];
|
|
75
|
-
addOption(option:
|
|
76
|
-
getOptionsForName(optionName:
|
|
79
|
+
addOption(option: AbstractJDLOption): void;
|
|
80
|
+
getOptionsForName(optionName: string): any[];
|
|
77
81
|
forEachOption(passedFunction: (option: any) => void): void;
|
|
78
|
-
hasOption(optionName:
|
|
79
|
-
isEntityInMicroservice(entityName:
|
|
82
|
+
hasOption(optionName: string): boolean;
|
|
83
|
+
isEntityInMicroservice(entityName: string): boolean;
|
|
80
84
|
getOptionQuantity(): number;
|
|
81
85
|
toString(): string;
|
|
82
86
|
}
|
|
@@ -1,30 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
* Copyright 2013-2024 the original author or authors from the JHipster project.
|
|
3
|
-
*
|
|
4
|
-
* This file is part of the JHipster project, see https://www.jhipster.tech/
|
|
5
|
-
* for more information.
|
|
6
|
-
*
|
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
-
* you may not use this file except in compliance with the License.
|
|
9
|
-
* You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* https://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
-
* See the License for the specific language governing permissions and
|
|
17
|
-
* limitations under the License.
|
|
18
|
-
*/
|
|
1
|
+
import AbstractJDLOption from './abstract-jdl-option.js';
|
|
19
2
|
export default class JDLOptions {
|
|
20
|
-
options: Record<
|
|
3
|
+
options: Record<string, AbstractJDLOption>;
|
|
21
4
|
optionSize: number;
|
|
22
5
|
constructor();
|
|
23
|
-
addOption(option:
|
|
24
|
-
getOptions():
|
|
25
|
-
getOptionsForName(optionName: string):
|
|
26
|
-
has(optionName
|
|
6
|
+
addOption(option: AbstractJDLOption): void;
|
|
7
|
+
getOptions(): AbstractJDLOption[];
|
|
8
|
+
getOptionsForName(optionName: string): AbstractJDLOption[];
|
|
9
|
+
has(optionName?: string): boolean;
|
|
27
10
|
size(): number;
|
|
28
|
-
forEach(passedFunction:
|
|
11
|
+
forEach(passedFunction: (option: AbstractJDLOption) => void, thisArg?: any): void;
|
|
29
12
|
toString(indent?: number): string;
|
|
30
13
|
}
|
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
import { RelationshipSide, JDLRelationshipType } from '../basic-types/relationships.js';
|
|
2
2
|
export type JDLRelationshipOptions = Record<'global' | 'source' | 'destination', Record<string, any>>;
|
|
3
|
+
export type JDLSourceEntitySide = {
|
|
4
|
+
sourceEntity: string;
|
|
5
|
+
injectedFieldInSourceEntity?: string;
|
|
6
|
+
injectedFieldInSourceIsRequired: boolean;
|
|
7
|
+
commentForSourceEntity?: string;
|
|
8
|
+
};
|
|
3
9
|
export type JDLRelationshipModel = {
|
|
4
|
-
side
|
|
10
|
+
side?: RelationshipSide;
|
|
5
11
|
from: string;
|
|
6
12
|
to: string;
|
|
7
13
|
type: JDLRelationshipType;
|
|
8
14
|
options: JDLRelationshipOptions;
|
|
9
|
-
injectedFieldInFrom
|
|
10
|
-
injectedFieldInTo
|
|
15
|
+
injectedFieldInFrom?: string | null;
|
|
16
|
+
injectedFieldInTo?: string | null;
|
|
11
17
|
isInjectedFieldInFromRequired: boolean;
|
|
12
18
|
isInjectedFieldInToRequired: boolean;
|
|
13
|
-
commentInFrom
|
|
14
|
-
commentInTo
|
|
19
|
+
commentInFrom?: string | null;
|
|
20
|
+
commentInTo?: string | null;
|
|
15
21
|
};
|
|
16
22
|
export default class JDLRelationship implements JDLRelationshipModel {
|
|
17
|
-
side
|
|
23
|
+
side?: RelationshipSide;
|
|
18
24
|
from: string;
|
|
19
25
|
to: string;
|
|
20
26
|
type: JDLRelationshipType;
|
|
@@ -23,12 +29,12 @@ export default class JDLRelationship implements JDLRelationshipModel {
|
|
|
23
29
|
source: Record<string, any>;
|
|
24
30
|
destination: Record<string, any>;
|
|
25
31
|
};
|
|
26
|
-
injectedFieldInFrom
|
|
27
|
-
injectedFieldInTo
|
|
32
|
+
injectedFieldInFrom?: string | null;
|
|
33
|
+
injectedFieldInTo?: string | null;
|
|
28
34
|
isInjectedFieldInFromRequired: boolean;
|
|
29
35
|
isInjectedFieldInToRequired: boolean;
|
|
30
|
-
commentInFrom
|
|
31
|
-
commentInTo
|
|
36
|
+
commentInFrom?: string | null;
|
|
37
|
+
commentInTo?: string | null;
|
|
32
38
|
constructor(args: Partial<JDLRelationshipModel> & Pick<JDLRelationshipModel, 'from' | 'to' | 'type'>);
|
|
33
39
|
/**
|
|
34
40
|
* Returns a constructed ID representing this relationship.
|
|
@@ -22,11 +22,11 @@ export default class JDLRelationships {
|
|
|
22
22
|
relationships: Record<JDLRelationshipType, Map<string, JDLRelationship>>;
|
|
23
23
|
constructor();
|
|
24
24
|
add(relationship: JDLRelationship): void;
|
|
25
|
-
getOneToOne(relationshipId:
|
|
26
|
-
getOneToMany(relationshipId:
|
|
27
|
-
getManyToOne(relationshipId:
|
|
28
|
-
getManyToMany(relationshipId:
|
|
29
|
-
get(type:
|
|
25
|
+
getOneToOne(relationshipId: string): JDLRelationship | undefined;
|
|
26
|
+
getOneToMany(relationshipId: string): JDLRelationship | undefined;
|
|
27
|
+
getManyToOne(relationshipId: string): JDLRelationship | undefined;
|
|
28
|
+
getManyToMany(relationshipId: string): JDLRelationship | undefined;
|
|
29
|
+
get(type: JDLRelationshipType, relationshipId: string): JDLRelationship | undefined;
|
|
30
30
|
oneToOneQuantity(): number;
|
|
31
31
|
oneToManyQuantity(): number;
|
|
32
32
|
manyToOneQuantity(): number;
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
19
|
export default class JDLValidation {
|
|
20
|
-
name:
|
|
21
|
-
value
|
|
22
|
-
constructor(args:
|
|
20
|
+
name: string;
|
|
21
|
+
value?: string | number | RegExp | boolean;
|
|
22
|
+
constructor(args: Partial<JDLValidation>);
|
|
23
23
|
toString(): string;
|
|
24
24
|
}
|
|
@@ -17,8 +17,9 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
19
|
import JDLApplicationConfigurationOption from './jdl-application-configuration-option.js';
|
|
20
|
-
export default class ListJDLApplicationConfigurationOption extends JDLApplicationConfigurationOption {
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
export default class ListJDLApplicationConfigurationOption extends JDLApplicationConfigurationOption<any> {
|
|
21
|
+
quoted: boolean;
|
|
22
|
+
constructor(name: string, value: string[], quoted?: boolean);
|
|
23
|
+
getValue(): string[];
|
|
23
24
|
toString(): string;
|
|
24
25
|
}
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
19
|
import JDLApplicationConfigurationOption from './jdl-application-configuration-option.js';
|
|
20
|
-
export default class StringJDLApplicationConfigurationOption extends JDLApplicationConfigurationOption {
|
|
20
|
+
export default class StringJDLApplicationConfigurationOption extends JDLApplicationConfigurationOption<string> {
|
|
21
21
|
quoted: boolean;
|
|
22
|
-
constructor(name:
|
|
22
|
+
constructor(name: string, value: string, quoted?: boolean);
|
|
23
23
|
toString(): string;
|
|
24
24
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2013-2024 the original author or authors from the JHipster project.
|
|
3
|
+
*
|
|
4
|
+
* This file is part of the JHipster project, see https://www.jhipster.tech/
|
|
5
|
+
* for more information.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
export type JDLJSONApplicationConfiguration = {
|
|
21
|
+
config: Record<string, string>;
|
|
22
|
+
entities?: any;
|
|
23
|
+
} & Record<string, any>;
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
* See the License for the specific language governing permissions and
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
|
-
import { Lexer } from 'chevrotain';
|
|
20
|
-
export declare const tokens:
|
|
19
|
+
import { Lexer, TokenType } from 'chevrotain';
|
|
20
|
+
export declare const tokens: Record<string, TokenType> & {
|
|
21
|
+
UNARY_OPTION: TokenType;
|
|
22
|
+
BINARY_OPTION: TokenType;
|
|
23
|
+
NAME: TokenType;
|
|
24
|
+
};
|
|
21
25
|
export declare const JDLLexer: Lexer;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* See the License for the specific language governing permissions and
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
|
-
export type JDLValidatorOptionType = 'BOOLEAN' | 'INTEGER' | 'list' | 'NAME' | 'qualifiedName' | 'STRING';
|
|
19
|
+
export type JDLValidatorOptionType = 'BOOLEAN' | 'INTEGER' | 'list' | 'NAME' | 'qualifiedName' | 'STRING' | 'quotedList';
|
|
20
20
|
export type JDLValidatorOption = {
|
|
21
21
|
type: JDLValidatorOptionType;
|
|
22
22
|
pattern?: RegExp;
|
|
@@ -1,20 +1,2 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2013-2024 the original author or authors from the JHipster project.
|
|
3
|
-
*
|
|
4
|
-
* This file is part of the JHipster project, see https://www.jhipster.tech/
|
|
5
|
-
* for more information.
|
|
6
|
-
*
|
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
-
* you may not use this file except in compliance with the License.
|
|
9
|
-
* You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* https://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
-
* See the License for the specific language governing permissions and
|
|
17
|
-
* limitations under the License.
|
|
18
|
-
*/
|
|
19
1
|
export declare function addAll<T>(set: Set<T>, elements: T[]): Set<T>;
|
|
20
|
-
export declare function join(set: Set<unknown>, separator?: string): string;
|
|
2
|
+
export declare function join(set: Set<unknown>, separator?: string, quoted?: boolean): string;
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
*/
|
|
19
19
|
import Validator from './validator.js';
|
|
20
|
+
import JDLDeployment from '../models/jdl-deployment.js';
|
|
20
21
|
export default class DeploymentValidator extends Validator {
|
|
21
22
|
constructor();
|
|
22
|
-
validate(jdlDeployment:
|
|
23
|
+
validate(jdlDeployment: JDLDeployment, options?: {}): void;
|
|
23
24
|
}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import type { BaseEnvironmentOptions, GetGeneratorConstructor, BaseGenerator as YeomanGenerator } from '@yeoman/types';
|
|
2
2
|
import { YeomanTest, RunContext, RunContextSettings, RunResult } from 'yeoman-test';
|
|
3
3
|
import type { JHipsterGeneratorOptions } from '../generators/base/api.js';
|
|
4
|
-
type
|
|
4
|
+
import type { JSONEntity } from '../jdl/converters/types.js';
|
|
5
|
+
import CoreGenerator from '../generators/base-core/generator.js';
|
|
6
|
+
type BaseEntity = {
|
|
7
|
+
name: string;
|
|
8
|
+
} & JSONEntity;
|
|
5
9
|
type GeneratorTestType = YeomanGenerator<JHipsterGeneratorOptions>;
|
|
6
10
|
type GeneratorTestOptions = JHipsterGeneratorOptions;
|
|
7
|
-
type JHipsterRunResult<GeneratorType extends
|
|
11
|
+
type JHipsterRunResult<GeneratorType extends CoreGenerator = CoreGenerator> = RunResult<GeneratorType> & {
|
|
8
12
|
/**
|
|
9
13
|
* First argument of mocked source calls.
|
|
10
14
|
*/
|
|
@@ -14,11 +18,16 @@ type JHipsterRunResult<GeneratorType extends YeomanGenerator = YeomanGenerator>
|
|
|
14
18
|
*/
|
|
15
19
|
composedMockedGenerators: string[];
|
|
16
20
|
};
|
|
17
|
-
declare const runResult: JHipsterRunResult<
|
|
21
|
+
declare const runResult: JHipsterRunResult<CoreGenerator>;
|
|
18
22
|
export { runResult, runResult as result };
|
|
19
23
|
export declare const defineDefaults: ({ mockFactory }?: {
|
|
20
24
|
mockFactory?: any;
|
|
21
25
|
}) => Promise<void>;
|
|
26
|
+
export declare const createJHipsterConfigFiles: (configuration: Record<string, unknown>, entities?: BaseEntity[]) => {
|
|
27
|
+
[x: string]: BaseEntity | {
|
|
28
|
+
'generator-jhipster': Record<string, unknown>;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
22
31
|
export type FakeBlueprintOptions = {
|
|
23
32
|
packageJson?: any;
|
|
24
33
|
generator?: string | string[];
|
|
@@ -36,6 +45,7 @@ declare class JHipsterRunContext extends RunContext<GeneratorTestType> {
|
|
|
36
45
|
private workspaceApplications;
|
|
37
46
|
private commonWorkspacesConfig;
|
|
38
47
|
private generateApplicationsSet;
|
|
48
|
+
withOptions(options: Partial<Omit<JHipsterGeneratorOptions, 'env' | 'resolved' | 'namespace'> & Record<string, any>>): this;
|
|
39
49
|
withJHipsterConfig(configuration?: Record<string, unknown>, entities?: BaseEntity[]): this;
|
|
40
50
|
withSkipWritingPriorities(): this;
|
|
41
51
|
withWorkspacesCommonConfig(commonWorkspacesConfig: Record<string, unknown>): this;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-jhipster",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.5.0",
|
|
4
4
|
"description": "Spring Boot + Angular/React/Vue in one handy generator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yeoman-generator",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"prebuild": "npm run clean",
|
|
90
90
|
"build": "npm run compile && npm run copy-files && npm run compile-types && npm run copy-types",
|
|
91
91
|
"postbuild": "node bin/fix-bin.cjs",
|
|
92
|
+
"check-types": "tsc -p tsconfig.spec.json",
|
|
92
93
|
"clean": "rimraf dist",
|
|
93
94
|
"compile": "tsc",
|
|
94
95
|
"compile-types": "tsc -p tsconfig.types.json",
|
|
@@ -106,7 +107,7 @@
|
|
|
106
107
|
"prepare": "npm run build",
|
|
107
108
|
"prettier:check": "prettier --check \"{,**/}*.{js,ts,cjs,mjs,cts,mts,json,md,yml,java}\"",
|
|
108
109
|
"prettier:format": "prettier --write \"{,**/}*.{js,ts,cjs,mjs,cts,mts,json,md,yml,java}\"",
|
|
109
|
-
"pretest": "npm run lint",
|
|
110
|
+
"pretest": "npm run lint && npm run check-types",
|
|
110
111
|
"test": "npm run mocha-test test generators cli",
|
|
111
112
|
"update-snapshot": "esmocha --no-insight --no-parallel --update-snapshot --",
|
|
112
113
|
"update-snapshots": "esmocha jdl generators cli --update-snapshot --no-insight --forbid-only"
|
|
@@ -115,18 +116,18 @@
|
|
|
115
116
|
"@faker-js/faker": "8.4.1",
|
|
116
117
|
"@iarna/toml": "3.0.0",
|
|
117
118
|
"@types/ejs": "3.1.5",
|
|
118
|
-
"@types/lodash": "4.17.
|
|
119
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
120
|
-
"@typescript-eslint/parser": "7.
|
|
119
|
+
"@types/lodash": "4.17.4",
|
|
120
|
+
"@typescript-eslint/eslint-plugin": "7.11.0",
|
|
121
|
+
"@typescript-eslint/parser": "7.11.0",
|
|
121
122
|
"@yeoman/adapter": "1.4.0",
|
|
122
123
|
"@yeoman/conflicter": "2.0.0",
|
|
123
124
|
"@yeoman/namespace": "1.0.0",
|
|
124
125
|
"@yeoman/transform": "1.2.0",
|
|
125
126
|
"@yeoman/types": "1.2.0",
|
|
126
|
-
"axios": "1.
|
|
127
|
+
"axios": "1.7.2",
|
|
127
128
|
"chalk": "5.3.0",
|
|
128
129
|
"chevrotain": "11.0.3",
|
|
129
|
-
"commander": "12.
|
|
130
|
+
"commander": "12.1.0",
|
|
130
131
|
"conf": "12.0.0",
|
|
131
132
|
"debug": "4.3.4",
|
|
132
133
|
"didyoumean": "1.2.2",
|
|
@@ -135,38 +136,38 @@
|
|
|
135
136
|
"ejs": "3.1.10",
|
|
136
137
|
"eslint": "8.57.0",
|
|
137
138
|
"eslint-plugin-import": "2.29.1",
|
|
138
|
-
"eslint-plugin-unused-imports": "3.
|
|
139
|
-
"execa": "
|
|
140
|
-
"fast-xml-parser": "4.
|
|
141
|
-
"glob": "10.
|
|
139
|
+
"eslint-plugin-unused-imports": "3.2.0",
|
|
140
|
+
"execa": "9.1.0",
|
|
141
|
+
"fast-xml-parser": "4.4.0",
|
|
142
|
+
"glob": "10.4.1",
|
|
142
143
|
"isbinaryfile": "5.0.2",
|
|
143
144
|
"java-lint": "0.3.0",
|
|
144
145
|
"js-yaml": "4.1.0",
|
|
145
146
|
"latest-version": "9.0.0",
|
|
146
147
|
"lodash-es": "4.17.21",
|
|
147
148
|
"mem-fs": "4.1.0",
|
|
148
|
-
"mem-fs-editor": "11.0.
|
|
149
|
+
"mem-fs-editor": "11.0.1",
|
|
149
150
|
"minimatch": "9.0.4",
|
|
150
151
|
"normalize-path": "3.0.0",
|
|
151
152
|
"os-locale": "6.0.2",
|
|
152
153
|
"p-transform": "4.1.5",
|
|
153
154
|
"parse-gitignore": "2.0.0",
|
|
154
|
-
"piscina": "4.
|
|
155
|
+
"piscina": "4.5.1",
|
|
155
156
|
"pluralize": "8.0.0",
|
|
156
157
|
"prettier": "3.2.5",
|
|
157
158
|
"prettier-plugin-java": "2.6.0",
|
|
158
159
|
"prettier-plugin-packagejson": "2.5.0",
|
|
159
160
|
"prettier-plugin-properties": "0.3.0",
|
|
160
161
|
"randexp": "0.5.3",
|
|
161
|
-
"semver": "7.6.
|
|
162
|
+
"semver": "7.6.2",
|
|
162
163
|
"simple-git": "3.24.0",
|
|
163
164
|
"sort-keys": "5.0.0",
|
|
164
|
-
"type-fest": "4.18.
|
|
165
|
+
"type-fest": "4.18.3",
|
|
165
166
|
"typescript": "5.4.5",
|
|
166
167
|
"winston": "3.13.0",
|
|
167
168
|
"yaml": "2.4.2",
|
|
168
169
|
"yeoman-environment": "4.4.0",
|
|
169
|
-
"yeoman-generator": "7.
|
|
170
|
+
"yeoman-generator": "7.2.0"
|
|
170
171
|
},
|
|
171
172
|
"devDependencies": {
|
|
172
173
|
"@actions/core": "1.10.1",
|
|
@@ -179,23 +180,23 @@
|
|
|
179
180
|
"ejs-lint": "2.0.0",
|
|
180
181
|
"eslint-config-airbnb-base": "15.0.0",
|
|
181
182
|
"eslint-config-prettier": "9.1.0",
|
|
182
|
-
"eslint-plugin-chai-friendly": "0.
|
|
183
|
+
"eslint-plugin-chai-friendly": "0.8.0",
|
|
183
184
|
"eslint-plugin-mocha": "10.4.3",
|
|
184
185
|
"eslint-plugin-prettier": "5.1.3",
|
|
185
186
|
"esmocha": "1.2.0",
|
|
186
187
|
"jest-extended": "4.0.2",
|
|
187
|
-
"jsdoc": "4.0.
|
|
188
|
-
"octokit": "
|
|
188
|
+
"jsdoc": "4.0.3",
|
|
189
|
+
"octokit": "4.0.2",
|
|
189
190
|
"open-cli": "8.0.0",
|
|
190
191
|
"prettier2": "npm:prettier@2.8.8",
|
|
191
192
|
"quibble": "0.9.2",
|
|
192
|
-
"rimraf": "5.0.
|
|
193
|
-
"sinon": "
|
|
193
|
+
"rimraf": "5.0.7",
|
|
194
|
+
"sinon": "18.0.0",
|
|
194
195
|
"sinon-chai": "3.7.0",
|
|
195
|
-
"yeoman-test": "8.
|
|
196
|
+
"yeoman-test": "8.3.0"
|
|
196
197
|
},
|
|
197
198
|
"peerDependencies": {
|
|
198
|
-
"yeoman-test": "8.
|
|
199
|
+
"yeoman-test": "8.3.0"
|
|
199
200
|
},
|
|
200
201
|
"peerDependenciesMeta": {
|
|
201
202
|
"yeoman-test": {
|
|
File without changes
|