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
+1 -2
View File
@@ -7,7 +7,7 @@
"bin": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node --esm src/index.ts",
"dev": "node --loader ts-node/esm src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"watch": "tsc --watch",
@@ -17,7 +17,6 @@
"boxen": "^5",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"glob": "^7.1.6",
"inquirer": "^9.2.2",
"medusa-telemetry": "^0.0.17",
"nanoid": "^4.0.2",