epicshop 6.63.1 → 6.64.0

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.
@@ -490,7 +490,8 @@ async function findWorkshopAppDir(appLocation) {
490
490
  }
491
491
  // 3. Node's resolution process
492
492
  try {
493
- const workshopAppPath = import.meta.resolve('@epic-web/workshop-app/package.json');
493
+ const workshopAppPath = import.meta
494
+ .resolve('@epic-web/workshop-app/package.json');
494
495
  const packagePath = fileURLToPath(workshopAppPath);
495
496
  return path.dirname(packagePath);
496
497
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epicshop",
3
- "version": "6.63.1",
3
+ "version": "6.64.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,6 +8,9 @@
8
8
  "bin": "./cli.js",
9
9
  "zshy": {
10
10
  "cjs": false,
11
+ "conditions": {
12
+ "import": "esm"
13
+ },
11
14
  "exports": {
12
15
  "./package.json": "./package.json",
13
16
  "./cleanup": "./src/commands/cleanup.ts",
@@ -26,44 +29,54 @@
26
29
  "exports": {
27
30
  "./package.json": "./package.json",
28
31
  "./cleanup": {
32
+ "import": "./dist/commands/cleanup.js",
29
33
  "types": "./dist/commands/cleanup.d.ts",
30
- "import": "./dist/commands/cleanup.js"
34
+ "default": "./dist/commands/cleanup.js"
31
35
  },
32
36
  "./warm": {
37
+ "import": "./dist/commands/warm.js",
33
38
  "types": "./dist/commands/warm.d.ts",
34
- "import": "./dist/commands/warm.js"
39
+ "default": "./dist/commands/warm.js"
35
40
  },
36
41
  "./start": {
42
+ "import": "./dist/commands/start.js",
37
43
  "types": "./dist/commands/start.d.ts",
38
- "import": "./dist/commands/start.js"
44
+ "default": "./dist/commands/start.js"
39
45
  },
40
46
  "./update": {
47
+ "import": "./dist/commands/update.js",
41
48
  "types": "./dist/commands/update.d.ts",
42
- "import": "./dist/commands/update.js"
49
+ "default": "./dist/commands/update.js"
43
50
  },
44
51
  "./workshops": {
52
+ "import": "./dist/commands/workshops.js",
45
53
  "types": "./dist/commands/workshops.d.ts",
46
- "import": "./dist/commands/workshops.js"
54
+ "default": "./dist/commands/workshops.js"
47
55
  },
48
56
  "./playground": {
57
+ "import": "./dist/commands/playground.js",
49
58
  "types": "./dist/commands/playground.d.ts",
50
- "import": "./dist/commands/playground.js"
59
+ "default": "./dist/commands/playground.js"
51
60
  },
52
61
  "./progress": {
62
+ "import": "./dist/commands/progress.js",
53
63
  "types": "./dist/commands/progress.d.ts",
54
- "import": "./dist/commands/progress.js"
64
+ "default": "./dist/commands/progress.js"
55
65
  },
56
66
  "./diff": {
67
+ "import": "./dist/commands/diff.js",
57
68
  "types": "./dist/commands/diff.d.ts",
58
- "import": "./dist/commands/diff.js"
69
+ "default": "./dist/commands/diff.js"
59
70
  },
60
71
  "./exercises": {
72
+ "import": "./dist/commands/exercises.js",
61
73
  "types": "./dist/commands/exercises.d.ts",
62
- "import": "./dist/commands/exercises.js"
74
+ "default": "./dist/commands/exercises.js"
63
75
  },
64
76
  "./auth": {
77
+ "import": "./dist/commands/auth.js",
65
78
  "types": "./dist/commands/auth.d.ts",
66
- "import": "./dist/commands/auth.js"
79
+ "default": "./dist/commands/auth.js"
67
80
  }
68
81
  },
69
82
  "files": [
@@ -80,24 +93,24 @@
80
93
  "build:watch": "nx watch --projects=epicshop -- nx run \\$NX_PROJECT_NAME:build"
81
94
  },
82
95
  "dependencies": {
83
- "@epic-web/workshop-utils": "6.63.1",
84
- "@inquirer/prompts": "^7.5.1",
96
+ "@epic-web/workshop-utils": "6.64.0",
97
+ "@inquirer/prompts": "^8.2.0",
85
98
  "chalk": "^5.6.2",
86
- "close-with-grace": "^2.3.0",
87
- "execa": "^9.6.0",
99
+ "close-with-grace": "^2.4.0",
100
+ "execa": "^9.6.1",
88
101
  "get-port": "^7.1.0",
89
102
  "match-sorter": "^8.2.0",
90
103
  "openid-client": "^6.8.1",
91
- "open": "^10.2.0",
92
- "ora": "^8.1.1",
104
+ "open": "^11.0.0",
105
+ "ora": "^9.0.0",
93
106
  "yargs": "^18.0.0"
94
107
  },
95
108
  "devDependencies": {
96
109
  "@epic-web/config": "^1.21.3",
97
- "@types/node": "^24.10.0",
98
- "@types/yargs": "^17.0.34",
99
- "zshy": "^0.3.0",
100
- "vitest": "^4.0.8"
110
+ "@types/node": "^25.0.9",
111
+ "@types/yargs": "^17.0.35",
112
+ "zshy": "^0.7.0",
113
+ "vitest": "^4.0.17"
101
114
  },
102
115
  "repository": {
103
116
  "type": "git",