Skip to content

Commit 3f5f2ec

Browse files
committed
chore: wip
1 parent 9a31297 commit 3f5f2ec

File tree

20 files changed

+35
-97
lines changed

20 files changed

+35
-97
lines changed

bun.lockb

-218 KB
Binary file not shown.

storage/framework/core/chat/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ For casual chit-chat with others using this package:
7373
Many thanks to the following core technologies & people who have contributed to this package:
7474

7575
- [Chris Breuer](https://github.com/chrisbbreuer)
76-
- [Novu](https://novu.co/)
7776
- [All Contributors](../../contributors)
7877

7978
## 📄 License

storage/framework/core/chat/build.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ await Bun.build({
88
target: 'bun',
99

1010
external: [
11-
'@novu/stateless',
1211
'@stacksjs/cli',
1312
'@stacksjs/error-handling',
14-
'@novu/discord',
15-
'@novu/ms-teams',
16-
'@novu/node',
17-
'@novu/slack',
1813
],
1914

2015
plugins: [

storage/framework/core/chat/package.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,26 +48,17 @@
4848
"prepublishOnly": "bun --bun run build"
4949
},
5050
"peerDependencies": {
51-
"@novu/stateless": "^0.23.1",
5251
"@stacksjs/cli": "workspace:*",
5352
"@stacksjs/config": "workspace:*",
5453
"@stacksjs/error-handling": "workspace:*",
5554
"@stacksjs/types": "workspace:*"
5655
},
5756
"dependencies": {
58-
"@novu/stateless": "^0.23.1",
5957
"@stacksjs/cli": "workspace:*",
6058
"@stacksjs/config": "workspace:*",
6159
"@stacksjs/error-handling": "workspace:*",
6260
"@stacksjs/types": "workspace:*"
6361
},
64-
"optionalDependencies": {
65-
"@novu/discord": "^0.23.1",
66-
"@novu/ms-teams": "^0.23.1",
67-
"@novu/node": "^0.23.1",
68-
"@novu/slack": "^0.23.1",
69-
"@novu/stateless": "^0.23.1"
70-
},
7162
"devDependencies": {
7263
"@stacksjs/development": "workspace:*"
7364
}
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import { DiscordProvider } from '@novu/discord'
2-
import { italic } from '@stacksjs/cli'
3-
import type { ChatOptions } from '@stacksjs/types'
4-
import { ResultAsync } from '@stacksjs/error-handling'
1+
// import { DiscordProvider } from '@novu/discord'
2+
// import { italic } from '@stacksjs/cli'
3+
// import type { ChatOptions } from '@stacksjs/types'
4+
// import { ResultAsync } from '@stacksjs/error-handling'
55

6-
const provider = new DiscordProvider({})
6+
// const provider = new DiscordProvider({})
77

8-
function send(options: ChatOptions) {
9-
return ResultAsync.fromPromise(
10-
provider.sendMessage(options),
11-
() => new Error(`Failed to send message using provider: ${italic('Discord')}`),
12-
)
13-
}
8+
// function send(options: ChatOptions) {
9+
// return ResultAsync.fromPromise(
10+
// provider.sendMessage(options),
11+
// () => new Error(`Failed to send message using provider: ${italic('Discord')}`),
12+
// )
13+
// }
1414

15-
export { send as Send, send }
15+
// export { send as Send, send }

storage/framework/core/desktop/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626
"slack",
2727
"discord",
2828
"webhooks",
29-
"stacks",
30-
"Maizzle",
31-
"maizzle"
29+
"stacks"
3230
],
3331
"exports": {
3432
".": {

storage/framework/core/email/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ For casual chit-chat with others using this package:
145145
Many thanks to the following core technologies & people who have contributed to this package:
146146

147147
- [Chris Breuer](https://github.com/chrisbbreuer)
148-
- [Novu](https://novu.co/)
149148
- [All Contributors](../../contributors)
150149

151150
## 📄 License

storage/framework/core/email/build.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ await Bun.build({
1111
'@stacksjs/config',
1212
'@stacksjs/error-handling',
1313
'@stacksjs/types',
14-
'@maizzle/framework',
1514
'vue-email',
1615
'@vue-email/compiler',
1716
'json5',
1817
'@stacksjs/path',
1918
'@aws-sdk/client-ses',
20-
'@novu/ses',
2119
],
2220

2321
plugins: [
Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import { SESEmailProvider } from '@novu/ses'
2-
import type { EmailOptions } from '@stacksjs/types'
3-
import { notification } from '@stacksjs/config'
4-
import type { ResultAsync } from '@stacksjs/error-handling'
5-
import { send as sendEmail } from '../send'
1+
// import { SESEmailProvider } from '@novu/ses'
2+
// import type { EmailOptions } from '@stacksjs/types'
3+
// import { notification } from '@stacksjs/config'
4+
// import type { ResultAsync } from '@stacksjs/error-handling'
5+
// import { send as sendEmail } from '../send'
66

7-
const email = notification.email
8-
const env = email?.drivers?.ses
7+
// const email = notification.email
8+
// const env = email?.drivers?.ses
99

10+
// // const provider = new SESEmailProvider({
1011
// const provider = new SESEmailProvider({
11-
const provider = new SESEmailProvider({
12-
region: env?.region || 'us-east-1',
13-
accessKeyId: env?.key || '',
14-
secretAccessKey: env?.secret || '',
15-
senderName: email?.from.name || 'Stacks',
16-
from: email?.from.address || '',
17-
})
12+
// region: env?.region || 'us-east-1',
13+
// accessKeyId: env?.key || '',
14+
// secretAccessKey: env?.secret || '',
15+
// senderName: email?.from.name || 'Stacks',
16+
// from: email?.from.address || '',
17+
// })
1818

19-
async function send(options: EmailOptions, css?: string): Promise<ResultAsync<any, Error>> {
20-
return sendEmail(options, provider, 'Ses', css)
21-
}
19+
// async function send(options: EmailOptions, css?: string): Promise<ResultAsync<any, Error>> {
20+
// return sendEmail(options, provider, 'Ses', css)
21+
// }
2222

23-
export { send as Send, send }
23+
// export { send as Send, send }

storage/framework/core/email/src/send.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import { italic } from '@stacksjs/cli'
22
import { ResultAsync } from '@stacksjs/error-handling'
33
import type { EmailOptions } from '@stacksjs/types'
44

5-
// import * as Maizzle from '@maizzle/framework'
65
// import { stringify } from 'json5'
7-
// import * as maizzleConfig from './utils/config'
86

97
export async function send(options: EmailOptions, provider: any, providerName: string, css?: string): Promise<ResultAsync<any, Error>> {
108
// const template = `

storage/framework/core/notifications/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ For casual chit-chat with others using this package:
262262
Many thanks to the following core technologies & people who have contributed to this package:
263263

264264
- [Chris Breuer](https://github.com/chrisbbreuer)
265-
- [Novu](https://novu.co/)
266265
- [All Contributors](../../contributors)
267266

268267
## 📄 License

storage/framework/core/notifications/package.json

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
"slack",
2727
"discord",
2828
"webhooks",
29-
"stacks",
30-
"maizzle"
29+
"stacks"
3130
],
3231
"exports": {
3332
".": {
@@ -65,7 +64,6 @@
6564
"@stacksjs/types": "workspace:*"
6665
},
6766
"dependencies": {
68-
"@maizzle/framework": "^4.7.6",
6967
"@stacksjs/chat": "workspace:*",
7068
"@stacksjs/cli": "workspace:*",
7169
"@stacksjs/config": "workspace:*",
@@ -75,29 +73,6 @@
7573
"@stacksjs/sms": "workspace:*",
7674
"@stacksjs/types": "workspace:*"
7775
},
78-
"optionalDependencies": {
79-
"@novu/discord": "^0.23.1",
80-
"@novu/emailjs": "^0.23.1",
81-
"@novu/gupshup": "^0.23.1",
82-
"@novu/mailgun": "^0.23.1",
83-
"@novu/mailjet": "^0.23.1",
84-
"@novu/mandrill": "^0.23.1",
85-
"@novu/netcore": "^0.23.1",
86-
"@novu/nexmo": "^0.23.1",
87-
"@novu/node": "^0.23.1",
88-
"@novu/nodemailer": "^0.23.1",
89-
"@novu/plivo": "^0.23.1",
90-
"@novu/postmark": "^0.23.1",
91-
"@novu/sendgrid": "^0.23.1",
92-
"@novu/ses": "^0.23.1",
93-
"@novu/slack": "^0.23.1",
94-
"@novu/sms77": "^0.23.1",
95-
"@novu/sns": "^0.23.1",
96-
"@novu/stateless": "^0.23.1",
97-
"@novu/telnyx": "^0.23.1",
98-
"@novu/termii": "^0.23.1",
99-
"@novu/twilio": "^0.23.1"
100-
},
10176
"devDependencies": {
10277
"@stacksjs/development": "workspace:*"
10378
}

storage/framework/core/push/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ For casual chit-chat with others using this package:
6161
Many thanks to the following core technologies & people who have contributed to this package:
6262

6363
- [Chris Breuer](https://github.com/chrisbbreuer)
64-
- [Novu](https://novu.co/)
6564
- [All Contributors](../../contributors)
6665

6766
## 📄 License

storage/framework/core/push/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,11 @@
4646
"prepublishOnly": "bun --bun run build"
4747
},
4848
"peerDependencies": {
49-
"@novu/node": "^0.23.1",
50-
"@novu/stateless": "^0.23.1",
5149
"@stacksjs/cli": "workspace:*",
5250
"@stacksjs/config": "workspace:*",
5351
"@stacksjs/error-handling": "workspace:*"
5452
},
5553
"dependencies": {
56-
"@novu/node": "^0.23.1",
57-
"@novu/stateless": "^0.23.1",
5854
"@stacksjs/cli": "workspace:*",
5955
"@stacksjs/config": "workspace:*",
6056
"@stacksjs/error-handling": "workspace:*"

storage/framework/core/scheduler/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ For casual chit-chat with others using this package:
127127
Many thanks to the following core technologies & people who have contributed to this package:
128128

129129
- [Chris Breuer](https://github.com/chrisbbreuer)
130-
- [Novu](https://novu.co/)
131130
- [All Contributors](../../contributors)
132131

133132
## 📄 License

storage/framework/core/sms/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ For casual chit-chat with others using this package:
127127
Many thanks to the following core technologies & people who have contributed to this package:
128128

129129
- [Chris Breuer](https://github.com/chrisbbreuer)
130-
- [Novu](https://novu.co/)
131130
- [All Contributors](../../contributors)
132131

133132
## 📄 License

storage/framework/core/types/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"@mdit-vue/plugin-component": "^2.0.0",
5252
"@mdit-vue/plugin-frontmatter": "^2.0.0",
5353
"@mdit-vue/types": "^2.0.0",
54-
"@novu/stateless": "^0.23.1",
5554
"@rollup/pluginutils": "^5.1.0",
5655
"@stacksjs/validation": "workspace:*",
5756
"@types/aws4": "^1.11.6",

storage/framework/core/types/src/services.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ export interface ServicesOptions {
3535
apiKey: string
3636
region: string
3737
}
38-
39-
novu?: {
40-
key: string
41-
}
4238
}
4339

4440
export type ServicesConfig = Partial<ServicesOptions>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { ISmsOptions as SmsOptions } from '@novu/stateless'
1+
// import type { ISmsOptions as SmsOptions } from '@novu/stateless'
22

3-
export type { SmsOptions }
3+
// export type { SmsOptions }
44

5-
export type SmsConfig = SmsOptions
5+
// export type SmsConfig = SmsOptions

storage/framework/ide/dictionary.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ mailgun
164164
mailjet
165165
mailparser
166166
mailpit
167-
maizzle
168167
marvinpinto
169168
mattpocock
170169
mdit
@@ -190,7 +189,6 @@ nexe
190189
nexmo
191190
nitropack
192191
noopener
193-
novu
194192
npmjs
195193
npmrc
196194
nprogress

0 commit comments

Comments
 (0)