Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Dec 6, 2024
1 parent c3aa797 commit 358b2e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v6.4.0

- :rocket: Avoid printing work `Error` when no env file is present for easier log parsing

### v6.3.0

- :rocket: Ensure static `name` value matches remote layer
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function env(current: string) {

Object.assign(process.env, JSON.parse(String(fs.readFileSync(dotfile))));
} catch (err) {
console.log(`ok - no .env file loaded: ${err}`);
console.log(`ok - no .env file loaded: ${err instanceof Error ? err.message : 'unknown reason'}`);
}
}

Expand Down

0 comments on commit 358b2e5

Please sign in to comment.