Skip to content

Commit 321fe3a

Browse files
authored
Merge pull request sveltejs#4 from benmccann/build
2 parents cd32346 + 6904938 commit 321fe3a

File tree

5 files changed

+455
-646
lines changed

5 files changed

+455
-646
lines changed

dist/action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19394,7 +19394,7 @@ function validate_headings() {
1939419394

1939519395
function linkify_headings() {
1939619396
return function (tree, { data }) {
19397-
if (data.docs_type !== "docs" && data.docs_type !== "blog") return;
19397+
if (data.docs_type !== "docs" && data.docs_type !== "blog" && data.docs_type !== "faq") return;
1939819398

1939919399
unistUtilVisit(tree, "heading", (node) => {
1940019400
const prev_section = data.section_stack[data.section_stack.length - 1];

dist/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18157,7 +18157,7 @@ function validate_headings() {
1815718157

1815818158
function linkify_headings() {
1815918159
return function (tree, { data }) {
18160-
if (data.docs_type !== "docs" && data.docs_type !== "blog") return;
18160+
if (data.docs_type !== "docs" && data.docs_type !== "blog" && data.docs_type !== "faq") return;
1816118161

1816218162
unistUtilVisit(tree, "heading", (node) => {
1816318163
const prev_section = data.section_stack[data.section_stack.length - 1];

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
"remark-parse": "^9.0.0",
4848
"remark-rehype": "^8.0.0",
4949
"rollup": "^2.41.2",
50-
"rollup-plugin-terser": "^7.0.2",
5150
"ts-node": "^9.1.1",
5251
"typescript": "^4.2.3",
5352
"unified": "^9.2.1",

0 commit comments

Comments
 (0)