create-medusa-app 2.11.3-preview-20251102150140 → 2.11.3-preview-20251102210134

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,14 +1,16 @@
1
1
  # Change Log
2
2
 
3
- ## 2.11.3-preview-20251102150140
3
+ ## 2.11.3-preview-20251102210134
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - [#13910](https://github.com/medusajs/medusa/pull/13910) [`224ab39a81e8d3cf3d6fa3ff5eee82541f64728d`](https://github.com/medusajs/medusa/commit/224ab39a81e8d3cf3d6fa3ff5eee82541f64728d) Thanks [@adrien2p](https://github.com/adrien2p)! - chore(): Dependencies cleanup and improvements
8
8
 
9
- - Updated dependencies [[`224ab39a81e8d3cf3d6fa3ff5eee82541f64728d`](https://github.com/medusajs/medusa/commit/224ab39a81e8d3cf3d6fa3ff5eee82541f64728d)]:
10
- - @medusajs/deps@2.11.3-preview-20251102150140
11
- - @medusajs/telemetry@2.11.3-preview-20251102150140
9
+ - [#13932](https://github.com/medusajs/medusa/pull/13932) [`37563987b8fe75c9acfe62957a33e8398977647a`](https://github.com/medusajs/medusa/commit/37563987b8fe75c9acfe62957a33e8398977647a) Thanks [@adrien2p](https://github.com/adrien2p)! - chore(): Fix dependencies vulnerabilities
10
+
11
+ - Updated dependencies [[`224ab39a81e8d3cf3d6fa3ff5eee82541f64728d`](https://github.com/medusajs/medusa/commit/224ab39a81e8d3cf3d6fa3ff5eee82541f64728d), [`37563987b8fe75c9acfe62957a33e8398977647a`](https://github.com/medusajs/medusa/commit/37563987b8fe75c9acfe62957a33e8398977647a)]:
12
+ - @medusajs/deps@2.11.3-preview-20251102210134
13
+ - @medusajs/telemetry@2.11.3-preview-20251102210134
12
14
 
13
15
  ## 2.11.2
14
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-medusa-app",
3
- "version": "2.11.3-preview-20251102150140",
3
+ "version": "2.11.3-preview-20251102210134",
4
4
  "description": "Create a Medusa project using a single command.",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",
@@ -13,8 +13,8 @@
13
13
  "watch": "tsc --watch"
14
14
  },
15
15
  "dependencies": {
16
- "@medusajs/deps": "2.11.3-preview-20251102150140",
17
- "@medusajs/telemetry": "2.11.3-preview-20251102150140",
16
+ "@medusajs/deps": "2.11.3-preview-20251102210134",
17
+ "@medusajs/telemetry": "2.11.3-preview-20251102210134",
18
18
  "boxen": "^5.0.1",
19
19
  "chalk": "^4.1.2",
20
20
  "commander": "^11.0.0",
@@ -27,7 +27,7 @@
27
27
  "slugify": "^1.6.6",
28
28
  "uuid": "^9.0.0",
29
29
  "validator": "^13.15.20",
30
- "wait-on": "^7.0.1",
30
+ "wait-on": "^9.0.1",
31
31
  "winston": "^3.9.0"
32
32
  },
33
33
  "devDependencies": {
@@ -1,7 +1,7 @@
1
1
  import winston from "winston"
2
2
 
3
3
  const consoleTransport = new winston.transports.Console({
4
- format: winston.format.printf((log) => log.message),
4
+ format: winston.format.printf((log) => log.message as string),
5
5
  })
6
6
  const options = {
7
7
  transports: [consoleTransport],