@firestartr/cli 1.50.1-snapshot-14 → 1.50.1-snapshot-15
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/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -289786,7 +289786,7 @@ function fromYaml(data) {
|
|
|
289786
289786
|
}
|
|
289787
289787
|
function toYaml(data, opts = {}) {
|
|
289788
289788
|
src_logger.debug('opts', opts);
|
|
289789
|
-
const result = yaml_dist.stringify(data);
|
|
289789
|
+
const result = yaml_dist.stringify(data, { defaultStringType: 'QUOTE_DOUBLE' });
|
|
289790
289790
|
return result;
|
|
289791
289791
|
}
|
|
289792
289792
|
function dumpYaml(data) {
|