@jayfong/x-server 1.33.3 → 1.33.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.33.4](https://github.com/jfWorks/x-server/compare/v1.33.3...v1.33.4) (2022-07-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove console log ([13df7b1](https://github.com/jfWorks/x-server/commit/13df7b1728ab67df8206e79b2742f03143ff5668))
11
+
5
12
  ### [1.33.3](https://github.com/jfWorks/x-server/compare/v1.33.2...v1.33.3) (2022-07-07)
6
13
 
7
14
  ### [1.33.2](https://github.com/jfWorks/x-server/compare/v1.33.1...v1.33.2) (2022-06-28)
@@ -29,7 +29,6 @@ class JwtService {
29
29
  ignoreExpiration: false
30
30
  }, (err, data) => {
31
31
  if (err) {
32
- console.log(err);
33
32
  reject(new _http_error.HttpError.Unauthorized());
34
33
  } else {
35
34
  resolve(data);
@@ -19,7 +19,6 @@ export class JwtService {
19
19
  ignoreExpiration: false
20
20
  }, (err, data) => {
21
21
  if (err) {
22
- console.log(err);
23
22
  reject(new HttpError.Unauthorized());
24
23
  } else {
25
24
  resolve(data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jayfong/x-server",
3
- "version": "1.33.3",
3
+ "version": "1.33.4",
4
4
  "license": "ISC",
5
5
  "sideEffects": false,
6
6
  "main": "lib/_cjs/index.js",