Skip to content

Commit

Permalink
fix: add more text for rss
Browse files Browse the repository at this point in the history
  • Loading branch information
thedaviddias committed Jun 12, 2023
1 parent a2c3846 commit ad9cd5f
Show file tree
Hide file tree
Showing 6 changed files with 2,387 additions and 10 deletions.
23 changes: 21 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
"command": "pnpm dev"
},
{
"name": "Next.js: debug client-side",
Expand All @@ -16,12 +16,31 @@
"name": "Next.js: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"command": "pnpm dev",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
},
{
"type": "node",
"name": "vscode-jest-tests.v2",
"request": "launch",
"args": [
"test",
"--runInBand",
"--watchAll=false",
"--testNamePattern",
"${jest.testNamePattern}",
"--runTestsByPath",
"${jest.testFile}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"program": "${workspaceFolder}/pnpm"
}
]
}
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,7 @@
"name": "draft",
"type": "boolean"
},
"frontMatter.content.supportedFileTypes": ["mdx"]
"frontMatter.content.supportedFileTypes": ["mdx"],
"jest.jestCommandLine": "npm run test --",
"jest.rootPath": "/Users/thedaviddias/Projects/thedaviddias-blog"
}
15 changes: 15 additions & 0 deletions public/rss/feed.json

Large diffs are not rendered by default.

Loading

0 comments on commit ad9cd5f

Please sign in to comment.