Skip to content

Commit c8a2b56

Browse files
committed
Correct full version with -experimental-
1 parent 9919c0d commit c8a2b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/llm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const pages = await Promise.all(files.map(processFile))
105105
const packageJson = await fs.readFile(path.join(import.meta.dirname, "../package.json"), "utf-8");
106106
let version = JSON.parse(packageJson).version;
107107
const sha = await execAsync("git rev-parse --short HEAD").then(({ stdout }) => stdout.trim());
108-
const fullVersion = `${version}-${sha}`;
108+
const fullVersion = `${version}-experimental-${sha}`;
109109
const header = `Experimental Rescript WebAPI Documentation ${fullVersion}
110110
111111
This is the API documentation for the experimental WebAPI module version ${fullVersion}.

0 commit comments

Comments
 (0)