@firestartr/cli 1.50.1-snapshot-16 → 1.50.1-snapshot-17
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 +2 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -289787,7 +289787,7 @@ function fromYaml(data) {
|
|
|
289787
289787
|
function toYaml(data, opts = {}) {
|
|
289788
289788
|
src_logger.debug('opts', opts);
|
|
289789
289789
|
const result = yaml_dist.stringify(data, {
|
|
289790
|
-
defaultKeyType:
|
|
289790
|
+
defaultKeyType: 'PLAIN',
|
|
289791
289791
|
defaultStringType: 'QUOTE_DOUBLE',
|
|
289792
289792
|
});
|
|
289793
289793
|
return result;
|
|
@@ -289795,7 +289795,7 @@ function toYaml(data, opts = {}) {
|
|
|
289795
289795
|
function dumpYaml(data) {
|
|
289796
289796
|
src_logger.debug('Dumping object data to YAML %O', data);
|
|
289797
289797
|
return yaml_dist.stringify(data, {
|
|
289798
|
-
defaultKeyType:
|
|
289798
|
+
defaultKeyType: 'PLAIN',
|
|
289799
289799
|
defaultStringType: 'QUOTE_DOUBLE',
|
|
289800
289800
|
});
|
|
289801
289801
|
}
|