UNPKG

gen-jhipster

Version:

VHipster - Spring Boot + Angular/React/Vue in one handy generator

60 lines (59 loc) 3.12 kB
/** * Copyright 2013-2026 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { readFileSync } from 'node:fs'; import { join } from 'node:path'; import { fileURLToPath } from 'node:url'; export * from "../lib/constants/yeoman.js"; export * from "../lib/constants/jhipster.js"; export const BLUEPRINT_API_VERSION = 'jhipster-8'; // jhipster-bom version export const JHIPSTER_DEPENDENCIES_VERSION = '9.0.0'; // Version of Java export const RECOMMENDED_JAVA_VERSION = '21'; // Supported Java versions, https://www.oracle.com/java/technologies/java-se-support-roadmap.html export const JAVA_COMPATIBLE_VERSIONS = ['21', '25']; // Force spring milestone repository. Spring Boot milestones are detected. export const ADD_SPRING_MILESTONE_REPOSITORY = false; // Version of Node, NPM export const RECOMMENDED_NODE_VERSION = readFileSync(join(fileURLToPath(import.meta.url), '../init/resources/.node-version'), 'utf-8').trim(); // all constants used throughout all generators export const LOGIN_REGEX = '^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$'; // JS does not support atomic groups export const LOGIN_REGEX_JS = '^[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\\\.[a-zA-Z0-9-]+)*$|^[_.@A-Za-z0-9-]+$'; export const MAIN_DIR = 'src/main/'; export const TEST_DIR = 'src/test/'; export const GRADLE_BUILD_SRC_DIR = 'buildSrc/'; export const GRADLE_BUILD_SRC_MAIN_DIR = `${GRADLE_BUILD_SRC_DIR}src/main/groovy/`; // Note: this will be prepended with 'target/classes' for Maven, or with 'build/resources/main' for Gradle. export const CLIENT_DIST_DIR = 'static/'; export const JHIPSTER_CONFIG_DIR = '.jhipster'; export const TEMPLATES_DOCKER_DIR = 'docker/'; export const JAVA_DOCKER_DIR = `${MAIN_DIR}docker/`; export const LINE_LENGTH = 180; export const CLIENT_MAIN_SRC_DIR = `${MAIN_DIR}webapp/`; export const CLIENT_TEST_SRC_DIR = `${TEST_DIR}javascript/`; export const CLIENT_WEBPACK_DIR = 'webpack/'; export const SERVER_MAIN_SRC_DIR = `${MAIN_DIR}java/`; export const SERVER_MAIN_PROTO_DIR = `${MAIN_DIR}proto/`; export const SERVER_MAIN_RES_DIR = `${MAIN_DIR}resources/`; export const SERVER_LIB_DIR = 'lib'; export const SERVER_TEST_SRC_DIR = `${TEST_DIR}java/`; export const SERVER_TEST_RES_DIR = `${TEST_DIR}resources/`; export const JS_PRETTIER_EXTENSIONS = 'cjs,mjs,js,cts,mts,ts'; export const PRETTIER_EXTENSIONS = `md,json,yml,html,${JS_PRETTIER_EXTENSIONS},tsx,css,scss,vue,java`;