Skip to content

Commit

Permalink
Upgrade Typescript 5.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Oct 9, 2024
1 parent b5a3d60 commit 4f09967
Show file tree
Hide file tree
Showing 3 changed files with 326 additions and 32 deletions.
3 changes: 1 addition & 2 deletions cli/environment-builder.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import { CLI_NAME, logger } from './utils.mjs';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const jhipsterDevBlueprintPath = process.env.JHIPSTER_DEV_BLUEPRINT === 'true' ? path.join(__dirname, '../.blueprint') : undefined;
const devBlueprintNamespace = '@jhipster/jhipster-dev';
const localBlueprintNamespace = '@jhipster/jhipster-local';
const defaultLookupOptions = {
Expand Down Expand Up @@ -109,7 +108,7 @@ export default class EnvironmentBuilder {
this.env = env;
}

async prepare({ blueprints, lookups, devBlueprintPath = jhipsterDevBlueprintPath } = {}) {
async prepare({ blueprints, lookups, devBlueprintPath } = {}) {
this.devBlueprintPath = existsSync(devBlueprintPath) ? devBlueprintPath : undefined;
this.localBlueprintPath = path.join(process.cwd(), '.blueprint');
this.localBlueprintExists = this.localBlueprintPath !== this.devBlueprintPath && existsSync(this.localBlueprintPath);
Expand Down
Loading

0 comments on commit 4f09967

Please sign in to comment.