@zthun/lumberjacky-sentry 2.2.0 → 2.2.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/README.md +5 -15
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,21 +1,11 @@
1
- # Lumberjacky Log
1
+ # Lumberjacky Nest
2
2
 
3
- This is the root log framework that includes the interfaces and cross framework
4
- loggers that can be used without the need of any framework.
3
+ This is the lumberjacky package that integrates into
4
+ [Sentry](https://sentry.io/).
5
5
 
6
6
  ## Usage
7
7
 
8
8
  ```sh
9
- npm install @zthun/lumberjacky-log
10
- yarn add @zthun/lumberjacky-log
9
+ npm install @zthun/lumberjacky-sentry
10
+ yarn add @zthun/lumberjacky-sentry
11
11
  ```
12
-
13
- There are 3 loggers that are added in this package that are given to you by
14
- default.
15
-
16
- | Logger | Description |
17
- | --------- | ---------------------------------------------------------------------------------------------------------------------------------- |
18
- | Console | Basic console logger that uses the lumberjacky interface |
19
- | Composite | Composite logger that logs to multiple sources |
20
- | Silent | Silent logger used for unit tests |
21
- | Context | Special logger that includes context information for logging. This is framework dependant. Basic console logging doesn't use this. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zthun/lumberjacky-sentry",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "A standard lumberjacky log interface to interact with sentry.",
5
5
  "author": "Anthony Bonta",
6
6
  "license": "MIT",
@@ -31,14 +31,14 @@
31
31
  "access": "public"
32
32
  },
33
33
  "dependencies": {
34
- "@sentry/types": "^8.27.0",
35
- "@zthun/lumberjacky-log": "^2.2.0",
34
+ "@sentry/types": "^8.37.1",
35
+ "@zthun/lumberjacky-log": "^2.2.1",
36
36
  "lodash": "^4.17.21"
37
37
  },
38
38
  "devDependencies": {
39
- "typescript": "^5.5.4",
40
- "vite": "^5.4.2",
41
- "vitest": "^2.0.5",
39
+ "typescript": "^5.6.3",
40
+ "vite": "^5.4.10",
41
+ "vitest": "^2.1.4",
42
42
  "vitest-mock-extended": "^2.0.2"
43
43
  },
44
44
  "peerDependencies": {
@@ -65,5 +65,5 @@
65
65
  "dist"
66
66
  ],
67
67
  "sideEffects": false,
68
- "gitHead": "3f632653c6722ca72d9e1c95d8cfafbc6305b051"
68
+ "gitHead": "4a595bf10284eea3c9ae5906a9588fdc9f996572"
69
69
  }