We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9919c0d commit c8a2b56Copy full SHA for c8a2b56
docs/llm.js
@@ -105,7 +105,7 @@ const pages = await Promise.all(files.map(processFile))
105
const packageJson = await fs.readFile(path.join(import.meta.dirname, "../package.json"), "utf-8");
106
let version = JSON.parse(packageJson).version;
107
const sha = await execAsync("git rev-parse --short HEAD").then(({ stdout }) => stdout.trim());
108
-const fullVersion = `${version}-${sha}`;
+const fullVersion = `${version}-experimental-${sha}`;
109
const header = `Experimental Rescript WebAPI Documentation ${fullVersion}
110
111
This is the API documentation for the experimental WebAPI module version ${fullVersion}.
0 commit comments