mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Migrates tooling to TSX (as advised by nodejs) until we are on Node 22 where we can `--watch --experimental-strip-types`
8 lines
285 B
Bash
Executable File
8 lines
285 B
Bash
Executable File
#/usr/bin/bash
|
|
|
|
JVMS_PATH=$(pwd)/vendor/jvms.html
|
|
|
|
[ -f "$JVMS_PATH" ] || curl https://docs.oracle.com/javase/specs/jvms/se18/html/jvms-6.html -o "$JVMS_PATH"
|
|
|
|
npx node --no-warnings=ExperimentalWarning --import=tsx docenizer-java.ts > ../../../lib/asm-docs/generated/asm-docs-java.ts
|