@jutge.org/toolkit 4.2.12 → 4.2.14
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/README.md +1 -1
- package/dist/index.js +311 -311
- package/package.json +1 -1
- package/toolkit/compilers.ts +1 -1
- package/toolkit/doctor.ts +1 -0
package/package.json
CHANGED
package/toolkit/compilers.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getAvailableCompilers, getCompilersInfo, getDefinedCompilerIds } from '../
|
|
1
|
+
import { getAvailableCompilers, getCompilersInfo, getDefinedCompilerIds } from '../compilers'
|
|
2
2
|
import { Command } from '@commander-js/extra-typings'
|
|
3
3
|
|
|
4
4
|
export const compilersCmd = new Command('compilers')
|
package/toolkit/doctor.ts
CHANGED
|
@@ -13,6 +13,7 @@ export const doctorCmd = new Command('doctor')
|
|
|
13
13
|
await tui.section('Checking Clojure installation', doc.checkClojure)
|
|
14
14
|
await tui.section('Checking Java installation', doc.checkJava)
|
|
15
15
|
await tui.section('Checking Rust installation', doc.checkRust)
|
|
16
|
+
await tui.section('Checking Verilog installation', doc.checkVerilog)
|
|
16
17
|
await tui.section('Checking XeLaTeX installation', doc.checkXeLaTeX)
|
|
17
18
|
await tui.section('Checking PdfLaTeX installation', doc.checkPdfLaTeX)
|
|
18
19
|
await tui.section('Checking Pandoc installation', doc.checkPandoc)
|