@jutge.org/toolkit 4.2.35 → 4.2.37

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jutge.org/toolkit",
3
3
  "description": "Toolkit to prepare problems for Jutge.org",
4
- "version": "4.2.35",
4
+ "version": "4.2.37",
5
5
  "homepage": "https://jutge.org",
6
6
  "author": {
7
7
  "name": "Jutge.org",
@@ -75,7 +75,6 @@
75
75
  "env-paths": "^4.0.0",
76
76
  "eslint": "^9.39.2",
77
77
  "execa": "^9.6.1",
78
- "gpt-tokenizer": "^3.4.0",
79
78
  "handlebars": "^4.7.8",
80
79
  "image-size": "^2.0.2",
81
80
  "inquirer-checkbox-plus-plus": "^1.1.1",
package/toolkit/doctor.ts CHANGED
@@ -17,9 +17,7 @@ export const doctorCmd = new Command('doctor')
17
17
  await tui.section('Checking R installation', doc.checkR)
18
18
  await tui.section('Checking CodeMetrics installation', doc.checkCodeMetrics)
19
19
  await tui.section('Checking XeLaTeX installation', doc.checkXeLaTeX)
20
- await tui.section('Checking PdfLaTeX installation', doc.checkPdfLaTeX)
21
20
  await tui.section('Checking Pandoc installation', doc.checkPandoc)
22
- await tui.section('Checking AI models', doc.checkAIEnvVars)
23
21
  await tui.section('Checking terminal', doc.checkTerminal)
24
22
  })
25
23
  })