create-better-notify 1.0.0-beta.2 → 1.0.0-beta.3

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.
package/README.md CHANGED
@@ -103,7 +103,7 @@ More templates are on the roadmap.
103
103
 
104
104
  ## Requirements
105
105
 
106
- - Node.js >= 22
106
+ - Node.js >= 22 or Bun
107
107
 
108
108
  ## License
109
109
 
@@ -7,8 +7,8 @@
7
7
  "start": "tsx src/server.ts"
8
8
  },
9
9
  "dependencies": {
10
- "@betternotify/core": "1.0.0-beta.3",
11
- "@betternotify/email": "1.0.0-beta.1",
10
+ "@betternotify/core": "1.0.0-beta.6",
11
+ "@betternotify/email": "1.0.0-beta.2",
12
12
  "@betternotify/react-email": "1.0.0-beta.1",
13
13
  "@betternotify/resend": "1.0.0-beta.2",
14
14
  "@betternotify/smtp": "1.0.0-beta.1",
@@ -45,6 +45,5 @@ export const catalog = rpc.catalog({
45
45
 
46
46
  export const notificationService = createClient({
47
47
  catalog,
48
- channels: { email: ch },
49
48
  transportsByChannel: { email: transport },
50
49
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-notify",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Scaffold a better-notify project with your preferred framework and RPC layer.",
5
5
  "license": "MIT",
6
6
  "repository": {