Skip to content

Commit

Permalink
📝 docs: fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Dec 16, 2023
1 parent b63c5e4 commit 5b41365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/updateAwesome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import { readJSON, updateAwesomeReadme } from './utils';
const updateAwesome = (filePath: string, md: string, plugins, locale?: string) => {
const data: string[] = [];

plugins.forEach(({ identifier, author, createAt, homepage, meta }, i) => {
plugins.forEach(({ identifier, author, createdAt, homepage, meta }, i) => {
const pluginConfigPath = resolve(
publicDir,
[identifier, locale, 'json'].filter(Boolean).join('.'),
);
const header = `### ${meta.title}`;
const subHeader = `<sup>By **[@${author}](${homepage})** on **${createAt}**</sup>`;
const subHeader = `<sup>By **[@${author}](${homepage})** on **${createdAt}**</sup>`;
const desc = [
`${meta.description}`,
`${meta.tags
Expand Down

0 comments on commit 5b41365

Please sign in to comment.