@ombori/grid-signals
Advanced tools
Comparing version 2.194.1 to 2.194.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.194.2](https://github.com/ombori/gridapp/compare/v2.194.1...v2.194.2) (2022-03-29) | ||
### Bug Fixes | ||
* debug signals ([3647a80](https://github.com/ombori/gridapp/commit/3647a80bd64032e8a4ca1e58ed72855553a53647)) | ||
## [2.194.1](https://github.com/ombori/gridapp/compare/v2.194.0...v2.194.1) (2022-03-29) | ||
@@ -8,0 +19,0 @@ |
@@ -22,3 +22,6 @@ "use strict"; | ||
}) | ||
.then((res) => res.json()) | ||
.then((res) => { | ||
console.log('debug_res_signals:', res); | ||
return res.json(); | ||
}) | ||
.then((res) => res); | ||
@@ -25,0 +28,0 @@ }); |
{ | ||
"name": "@ombori/grid-signals", | ||
"version": "2.194.1", | ||
"version": "2.194.2", | ||
"main": "dist/index.js", | ||
@@ -35,3 +35,3 @@ "scripts": { | ||
}, | ||
"gitHead": "af7ea8f5a186bd487367fe61a0c205cd6cabf3c4" | ||
"gitHead": "7c60446a711c4e2aeb9e3e6aab3eab081e6d3b42" | ||
} |
@@ -18,4 +18,7 @@ import 'isomorphic-fetch'; | ||
}) | ||
.then((res) => res.json()) | ||
.then((res) => { | ||
console.log('debug_res_signals:', res); | ||
return res.json(); | ||
}) | ||
.then((res) => res as T); | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
143548
3531