@mikkelscheike/email-provider-links 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -81,7 +81,7 @@ try {
81
81
  }
82
82
  catch (error) {
83
83
  // Fallback to hardcoded providers if JSON file is not found
84
- console.warn('Could not load providers from JSON file, using fallback providers');
84
+ console.warn('Could not load providers from JSON file, using fallback providers', error instanceof Error ? error.message : 'Unknown error');
85
85
  EMAIL_PROVIDERS = [
86
86
  {
87
87
  companyProvider: 'Google',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikkelscheike/email-provider-links",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "A TypeScript package that provides direct links to email providers based on email addresses to streamline login and password reset flows",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "build": "tsc",
16
- "test": "jest",
16
+ "test": "jest --silent",
17
17
  "test:watch": "jest --watch",
18
18
  "test:coverage": "jest --coverage",
19
19
  "prepublishOnly": "npm run build",
@@ -50,6 +50,7 @@
50
50
  "packageManager": "pnpm@10.11.1",
51
51
  "devDependencies": {
52
52
  "@semantic-release/commit-analyzer": "^13.0.1",
53
+ "@semantic-release/git": "^10.0.1",
53
54
  "@semantic-release/github": "^11.0.3",
54
55
  "@semantic-release/npm": "^12.0.1",
55
56
  "@semantic-release/release-notes-generator": "^14.0.3",