Skip to content

Commit b4a09c8

Browse files
committed
fix(projects): fix typos in JS/TS and update npm property names in project config
1 parent 801c132 commit b4a09c8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

data/projects.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const PROJECTS: Project[] = [
88
imgSrc: '/static/images/projects/AVP2.svg',
99
url: '/blog/202309/AVP_Introduction',
1010
// demo: <AvpDemo />,
11-
builtWith: ['WebGL', 'Typescript'],
11+
builtWith: ['WebGL', 'TypeScript'],
1212
},
1313
{
1414
type: 'work',
@@ -32,7 +32,7 @@ export const PROJECTS: Project[] = [
3232
description: `View iAPP data on your phone at any time.`,
3333
imgSrc: '/static/images/projects/iapp_lite.jpg',
3434
url: '/',
35-
builtWith: ['WechatMiniProgram', 'AntV', 'Javascript'],
35+
builtWith: ['WechatMiniProgram', 'AntV', 'JavaScript'],
3636
},
3737
{
3838
type: 'work',
@@ -48,9 +48,9 @@ export const PROJECTS: Project[] = [
4848
description: `A MCP server for retrieving and displaying current asset price information. This server provides tools to fetch real-time price information for various assets (including precious metals and cryptocurrencies), making it easy for large language models to access and display this data.`,
4949
imgSrc: '/static/images/projects/MCP.webp',
5050
repo: 'mk965/asset-price-mcp',
51-
npm: 'asset-price-mcp',
51+
npmPackageName: 'asset-price-mcp',
5252
url: 'https://www.npmjs.com/package/asset-price-mcp',
53-
builtWith: ['Typescript'],
53+
builtWith: ['TypeScript'],
5454
},
5555
{
5656
type: 'self',
@@ -59,7 +59,7 @@ export const PROJECTS: Project[] = [
5959
imgSrc: '/static/images/home_page.webp',
6060
repo: 'mk965/mengke.me',
6161
url: 'https://mengke.me',
62-
builtWith: ['NextJS', 'TailwindCSS', 'Typescript', 'Prisma', 'Umami'],
62+
builtWith: ['NextJS', 'TailwindCSS', 'TypeScript', 'Prisma', 'Umami'],
6363
},
6464
{
6565
type: 'self',
@@ -77,7 +77,7 @@ export const PROJECTS: Project[] = [
7777
imgSrc: '/static/images/projects/coord-check.jpg',
7878
repo: 'mk965/check-coord',
7979
url: 'https://www.npmjs.com/package/check-coord',
80-
builtWith: ['Javascript'],
80+
builtWith: ['JavaScript'],
8181
},
8282
{
8383
type: 'self',

types/data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export type Project = {
1515
description?: string
1616
imgSrc: string
1717
url?: string
18-
repo?: string | GithubRepository | null
19-
npm?: string | NpmPackage | null
18+
repo?: string | null
19+
npmPackageName?: string | null
2020
builtWith: string[]
2121
links?: { title: string; url: string }[]
2222
}

0 commit comments

Comments
 (0)