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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user