create-medusa-app 2.11.3-preview-20251103113757 → 2.11.3-snapshot-20251103115905

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -4
  2. package/package.json +4 -25
package/CHANGELOG.md CHANGED
@@ -1,16 +1,18 @@
1
1
  # Change Log
2
2
 
3
- ## 2.11.3-preview-20251103113757
3
+ ## 2.11.3-snapshot-20251103115905
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
+ - [#13940](https://github.com/medusajs/medusa/pull/13940) [`c202448d6e19f5caab2dae9a7cabb231e1663481`](https://github.com/medusajs/medusa/commit/c202448d6e19f5caab2dae9a7cabb231e1663481) Thanks [@adrien2p](https://github.com/adrien2p)! - chore(): Cleanup and organize deps
10
+
9
11
  - [#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
12
 
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-20251103113757
13
- - @medusajs/telemetry@2.11.3-preview-20251103113757
13
+ - Updated dependencies [[`224ab39a81e8d3cf3d6fa3ff5eee82541f64728d`](https://github.com/medusajs/medusa/commit/224ab39a81e8d3cf3d6fa3ff5eee82541f64728d), [`c202448d6e19f5caab2dae9a7cabb231e1663481`](https://github.com/medusajs/medusa/commit/c202448d6e19f5caab2dae9a7cabb231e1663481), [`37563987b8fe75c9acfe62957a33e8398977647a`](https://github.com/medusajs/medusa/commit/37563987b8fe75c9acfe62957a33e8398977647a)]:
14
+ - @medusajs/deps@2.11.3-snapshot-20251103115905
15
+ - @medusajs/telemetry@2.11.3-snapshot-20251103115905
14
16
 
15
17
  ## 2.11.2
16
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-medusa-app",
3
- "version": "2.11.3-preview-20251103113757",
3
+ "version": "2.11.3-snapshot-20251103115905",
4
4
  "description": "Create a Medusa project using a single command.",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",
@@ -10,11 +10,11 @@
10
10
  "dev": "node --loader ts-node/esm src/index.ts",
11
11
  "start": "node dist/index.js",
12
12
  "build": "tsc",
13
- "watch": "tsc --watch"
13
+ "watch": "yarn run -T tsc --watch"
14
14
  },
15
15
  "dependencies": {
16
- "@medusajs/deps": "2.11.3-preview-20251103113757",
17
- "@medusajs/telemetry": "2.11.3-preview-20251103113757",
16
+ "@medusajs/deps": "2.11.3-snapshot-20251103115905",
17
+ "@medusajs/telemetry": "2.11.3-snapshot-20251103115905",
18
18
  "boxen": "^5.0.1",
19
19
  "chalk": "^4.1.2",
20
20
  "commander": "^11.0.0",
@@ -30,27 +30,6 @@
30
30
  "wait-on": "^9.0.1",
31
31
  "winston": "^3.9.0"
32
32
  },
33
- "devDependencies": {
34
- "@types/chalk": "^2.2.0",
35
- "@types/commander": "^2.12.2",
36
- "@types/configstore": "^6.0.0",
37
- "@types/inquirer": "^9.0.3",
38
- "@types/node": "^20.12.11",
39
- "@types/node-emoji": "^1.8.2",
40
- "@types/uuid": "^9.0.1",
41
- "@types/validator": "^13.7.17",
42
- "@types/wait-on": "^5.3.1",
43
- "@typescript-eslint/eslint-plugin": "^6.19.0",
44
- "@typescript-eslint/parser": "^6.19.0",
45
- "configstore": "^5.0.1",
46
- "eslint": "^8.40.0",
47
- "eslint-config-google": "^0.14.0",
48
- "eslint-config-prettier": "^8.8.0",
49
- "eslint-plugin-prettier": "^4.2.1",
50
- "prettier": "^2.8.8",
51
- "ts-node": "^10.9.2",
52
- "typescript": "^5.6.2"
53
- },
54
33
  "engines": {
55
34
  "node": ">=14.16"
56
35
  },