Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 22, 2024
1 parent cf4f84d commit 817bd6c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"miniflare": "^3.20231218.2",
"nitropack": "^2.8.1",
"nuxt": "^3.9.3",
"prettier": "^3.2.4",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"wrangler": "0.0.0-fa09f4a2"
Expand Down
9 changes: 9 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function nitroModule(nitro: Nitro) {
"",
`Config path: \`${relative(".", configPath)}\``,
`Persist dir: \`${relative(".", persistDir)}\``,
].join("\n")
].join("\n"),
);

// Share config to the runtime
Expand All @@ -39,7 +39,7 @@ async function nitroModule(nitro: Nitro) {
// Add plugin to inject bindings to dev server
nitro.options.plugins = nitro.options.plugins || [];
nitro.options.plugins.push(
fileURLToPath(new URL("runtime/plugin.dev", import.meta.url))
fileURLToPath(new URL("runtime/plugin.dev", import.meta.url)),
);
}

Expand Down

0 comments on commit 817bd6c

Please sign in to comment.