Skip to content

Commit

Permalink
release: 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcoguiec committed May 12, 2024
1 parent 8f2004b commit 5bbb262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gcoguiec/eslint-config",
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"description": "A reusable ESLint configuration",
"license": "BSD-2-Clause",
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function importPeer<T>(name: string): Promise<T> {
return (imported as any).default ?? imported;
} catch (err) {
throw new Error(
`'${name}' dependency seems to be missing. Did you install it?`
`'${name}' dependency seems to be missing. Did you install it?\n\n${String(err)}`
);
}
}

0 comments on commit 5bbb262

Please sign in to comment.