Skip to content

Commit

Permalink
fix(cloudflare): fix typo in .dev.vars log message (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz committed Mar 27, 2024
1 parent 3c2591b commit 826bb4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/strange-eels-smell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@astrojs/cloudflare": patch
---

Fixes a typo for a Cloudflare runtime .dev.vars warning
2 changes: 1 addition & 1 deletion packages/cloudflare/src/utils/local-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class LocalRuntime {
const e = error as NodeJSError;
if (e.code === 'ENOENT') {
this._logger.info(
'There is no `.dev.vars` file in the root directory, if you have encrypted secrets or environmental variables you Cloudflare recommends to put them in this file'
'There is no `.dev.vars` file in the root directory, if you have encrypted secrets or environmental variables Cloudflare recommends you to put them in this file'
);
this.secrets = {};
} else {
Expand Down

0 comments on commit 826bb4f

Please sign in to comment.