We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb18d6 commit 9556eecCopy full SHA for 9556eec
docs/typedoc.js
@@ -1,10 +1,16 @@
1
+let version = process.env.VERSION;
2
+if (!version) {
3
+ const package = require('../package.json');
4
+ version = package.version;
5
+}
6
+
7
module.exports = {
8
out: '/tmp/project-releaser/project/docs/build/html',
9
exclude: [
10
'**/node_modules/**',
11
'test-types.ts'
12
],
- name: "LaunchDarkly React SDK (2.25.0)",
13
+ name: `LaunchDarkly React SDK (${version})`,
14
readme: 'none', // don't add a home page with a copy of README.md
15
entryPoints: "/tmp/project-releaser/project/src/index.ts",
16
entryPointStrategy: "expand"
0 commit comments