Use alias in create-twenty-app (#16335)

Small cleaning PR
This commit is contained in:
martmull
2025-12-04 17:12:55 +01:00
committed by GitHub
parent 0ced7da8e0
commit ce2a7d824e
3 changed files with 6 additions and 6 deletions
@@ -2,11 +2,11 @@ import chalk from 'chalk';
import * as fs from 'fs-extra';
import inquirer from 'inquirer';
import * as path from 'path';
import { copyBaseApplicationProject } from './utils/app-template';
import { copyBaseApplicationProject } from '@/utils/app-template';
import kebabCase from 'lodash.kebabcase';
import { convertToLabel } from './utils/convert-to-label';
import { tryGitInit } from './utils/try-git-init';
import { install } from './utils/install';
import { convertToLabel } from '@/utils/convert-to-label';
import { tryGitInit } from '@/utils/try-git-init';
import { install } from '@/utils/install';
const CURRENT_EXECUTION_DIRECTORY = process.env.INIT_CWD || process.cwd();