@gravito/flare 1.0.0-beta.1 → 1.0.0
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 +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +11 -9
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ class InvoicePaid extends Notification {
|
|
|
59
59
|
### 2. Configure OrbitFlare
|
|
60
60
|
|
|
61
61
|
```typescript
|
|
62
|
-
import { PlanetCore } from 'gravito
|
|
62
|
+
import { PlanetCore } from '@gravito/core'
|
|
63
63
|
import { OrbitFlare } from '@gravito/flare'
|
|
64
64
|
import { OrbitSignal } from '@gravito/signal'
|
|
65
65
|
import { OrbitStream } from '@gravito/stream'
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravito/flare",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "Lightweight, high-performance notification system for Gravito framework. Supports multiple channels (mail, database, broadcast, slack, sms) with zero runtime overhead.",
|
|
8
|
-
"module": "./dist/index.mjs",
|
|
9
8
|
"main": "./dist/index.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
16
|
"require": "./dist/index.cjs"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "bun run build.ts",
|
|
26
26
|
"test": "bun test",
|
|
27
|
-
"typecheck": "tsc --noEmit"
|
|
27
|
+
"typecheck": "bun tsc -p tsconfig.json --noEmit --skipLibCheck",
|
|
28
|
+
"test:coverage": "bun test --coverage --coverage-threshold=80",
|
|
29
|
+
"test:ci": "bun test --coverage --coverage-threshold=80"
|
|
28
30
|
},
|
|
29
31
|
"keywords": [
|
|
30
32
|
"gravito",
|
|
@@ -38,12 +40,12 @@
|
|
|
38
40
|
"author": "Carl Lee <carllee0520@gmail.com>",
|
|
39
41
|
"license": "MIT",
|
|
40
42
|
"dependencies": {
|
|
41
|
-
"gravito
|
|
43
|
+
"@gravito/core": "workspace:*"
|
|
42
44
|
},
|
|
43
45
|
"peerDependencies": {
|
|
44
|
-
"@gravito/stream": "
|
|
45
|
-
"@gravito/signal": "
|
|
46
|
-
"@gravito/radiance": "
|
|
46
|
+
"@gravito/stream": "workspace:*",
|
|
47
|
+
"@gravito/signal": "workspace:*",
|
|
48
|
+
"@gravito/radiance": "workspace:*"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"bun-types": "latest",
|
|
@@ -56,4 +58,4 @@
|
|
|
56
58
|
"url": "git+https://github.com/gravito-framework/gravito.git",
|
|
57
59
|
"directory": "packages/flare"
|
|
58
60
|
}
|
|
59
|
-
}
|
|
61
|
+
}
|