Skip to content

Commit 5f4fb73

Browse files
authored
Update theme for cml.dev (#139)
* allow false value for glossaryInstanceName * v0.2.5
1 parent 4fbe9b9 commit 5f4fb73

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/gatsby-theme-iterative/gatsby-node.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ exports.pluginOptionsSchema = ({ Joi }) => {
2020
path.resolve('content', 'docs', 'user-guide', 'basic-concepts')
2121
),
2222
docsDirectory: Joi.string().default(path.resolve('content', 'docs')),
23-
glossaryInstanceName: Joi.string().default('iterative-glossary'),
23+
glossaryInstanceName: Joi.string()
24+
.default('iterative-glossary')
25+
.allow(false),
2426
docsInstanceName: Joi.string().default('iterative-docs'),
2527
docsPrefix: Joi.string().default('doc'),
2628
simpleLinkerTerms: Joi.array().items(

packages/gatsby-theme-iterative/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dvcorg/gatsby-theme-iterative",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "",
55
"main": "index.js",
66
"types": "src/typings.d.ts",

0 commit comments

Comments
 (0)