Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
shailen-naidoo committed Feb 15, 2020
1 parent 2699fc8 commit 41d5384
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
15 changes: 13 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,19 @@
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/node_modules/hydrogen-cli/bin/run",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/docs/node_modules/hydrogen-cli/bin/run",
"cwd": "${workspaceFolder}/docs/",
"args": ["build", "--dev"],
},
{
"type": "node",
"request": "launch",
"name": "Debug Hydrogen CLI: Binary",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/bin/run",
"cwd": "${workspaceFolder}/docs/",
"args": ["build", "--dev"],
}
]
Expand Down
4 changes: 1 addition & 3 deletions docs/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ const page = ({ data }) => html`

module.exports = {
page,
data: () => ({
version,
}),
data: () => ({ version }),
head: () => [
['meta', { name: 'description', content: 'A super lightweight static-site generator built with TypeScript 😻 Uses 🔥 lit-html inspired templates for super performant template generation' }],
['meta', { property: 'og:title', content: '🎈 Hydrogen: Super fast static-site generator' }],
Expand Down

0 comments on commit 41d5384

Please sign in to comment.