@featurevisor/core
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.0.3](https://github.com/featurevisor/featurevisor/compare/v1.0.2...v1.0.3) (2024-01-04) | ||
### Bug Fixes | ||
* stringify segments in variable overrides correctly ([#241](https://github.com/featurevisor/featurevisor/issues/241)) ([986fc2f](https://github.com/featurevisor/featurevisor/commit/986fc2fb814a0be091250d63b3cd08a9901dc5cd)) | ||
## [1.0.2](https://github.com/featurevisor/featurevisor/compare/v1.0.1...v1.0.2) (2024-01-04) | ||
@@ -8,0 +19,0 @@ |
@@ -133,3 +133,5 @@ "use strict"; | ||
return { | ||
segments: JSON.stringify(override.segments), | ||
segments: typeof override.segments === "string" | ||
? override.segments | ||
: JSON.stringify(override.segments), | ||
value: override.value, | ||
@@ -136,0 +138,0 @@ }; |
{ | ||
"name": "@featurevisor/core", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Core package of Featurevisor for Node.js usage", | ||
@@ -60,3 +60,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "8ce607ee04f2b6daf6d172fa68d81dfd5b183ee7" | ||
"gitHead": "f81dbe193158315cecee8dfdf75bfb8c90deb061" | ||
} |
@@ -136,3 +136,6 @@ import * as fs from "fs"; | ||
return { | ||
segments: JSON.stringify(override.segments), | ||
segments: | ||
typeof override.segments === "string" | ||
? override.segments | ||
: JSON.stringify(override.segments), | ||
value: override.value, | ||
@@ -139,0 +142,0 @@ }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
724657
9594