Skip to content

Commit 9d029a9

Browse files
authored
docs: remove TEMPLATE from website; fix CSS autoprefixer warning (typescript-eslint#4539)
1 parent 2794631 commit 9d029a9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

packages/website/docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const config = {
5151
editUrl: `${githubUrl}/edit/main/packages/website/`,
5252
beforeDefaultRemarkPlugins,
5353
remarkPlugins,
54+
exclude: ['TEMPLATE.md'],
5455
},
5556
],
5657
[

packages/website/sidebars/sidebar.rules.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ const paths = globby
2424
};
2525
})
2626
.filter(item => {
27-
return item.name !== 'README' && !rules.some(a => a.name === item.name);
27+
return (
28+
item.name !== 'README' &&
29+
item.name !== 'TEMPLATE' &&
30+
!rules.some(a => a.name === item.name)
31+
);
2832
});
2933

3034
module.exports = {

packages/website/src/components/FinancialContributors.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
display: flex;
77
flex-wrap: wrap;
88
justify-content: center;
9-
align-items: end;
9+
align-items: flex-end;
1010
max-width: 800px;
1111
margin: 10px auto;
1212
padding: 0;

0 commit comments

Comments
 (0)