fix(create-medusa-app): remove glob-related warnings (#7985)

On every new installation of `create-medusa-app`, you get a warning related to `glob`'s version.

Since we don't need `glob` anymore (it was used to remove boilerplate files), I've removed it along with its usage. This includes removing the `--no-boilerplate` option.
This commit is contained in:
Shahed Nasser
2024-07-08 08:24:10 +00:00
committed by GitHub
parent 4d750c13d9
commit d2c89e7071
7 changed files with 1 additions and 69 deletions
@@ -33,7 +33,6 @@ const slugify = slugifyType.default
export type CreateOptions = {
repoUrl?: string
seed?: boolean
boilerplate?: boolean
skipDb?: boolean
dbUrl?: string
browser?: boolean
@@ -46,7 +45,6 @@ export type CreateOptions = {
export default async ({
repoUrl = "",
seed,
boilerplate,
skipDb,
dbUrl,
browser,
@@ -108,7 +106,6 @@ export default async ({
track("CMA_OPTIONS", {
repoUrl,
seed,
boilerplate,
skipDb,
browser,
migrations,
@@ -176,7 +173,6 @@ export default async ({
directory: projectPath,
dbConnectionString,
seed,
boilerplate,
spinner,
processManager,
abortController,