@stacksjs/config 0.44.11 → 0.44.12

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/dist/index.d.ts CHANGED
@@ -130,6 +130,7 @@ declare const library: LibraryOptions;
130
130
  * you have any questions, feel free to reach out via Discord or GitHub Discussions.
131
131
  */
132
132
  declare const notification: {
133
+ driver: any;
133
134
  email: {
134
135
  sendgrid: {
135
136
  key: any;
package/dist/index.mjs CHANGED
@@ -365,6 +365,7 @@ const library = {
365
365
  };
366
366
 
367
367
  const notification = {
368
+ driver: env$1("NOTIFICATION_DRIVER", "email"),
368
369
  email: {
369
370
  sendgrid: {
370
371
  key: env$1("SENDGRID_API_KEY", "test-value"),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/config",
3
3
  "type": "module",
4
- "version": "0.44.11",
4
+ "version": "0.44.12",
5
5
  "packageManager": "pnpm@7.18.2",
6
6
  "description": "The Stacks configuration.",
7
7
  "author": "Chris Breuer",
@@ -35,14 +35,14 @@
35
35
  "pnpm": ">=7.18.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "@stacksjs/path": "0.44.11",
39
- "@stacksjs/utils": "0.44.11"
38
+ "@stacksjs/path": "0.44.12",
39
+ "@stacksjs/utils": "0.44.12"
40
40
  },
41
41
  "devDependencies": {
42
42
  "mkdist": "^1.0.0",
43
43
  "typescript": "^4.9.4",
44
44
  "unbuild": "^1.0.2",
45
- "@stacksjs/testing": "0.44.11"
45
+ "@stacksjs/testing": "0.44.12"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "unbuild",