@firestartr/cli 1.50.1-snapshot-14 → 1.50.1-snapshot-16

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.
Files changed (2) hide show
  1. package/build/index.js +8 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -289786,12 +289786,18 @@ 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, {
289790
+ defaultKeyType: null,
289791
+ defaultStringType: 'QUOTE_DOUBLE',
289792
+ });
289790
289793
  return result;
289791
289794
  }
289792
289795
  function dumpYaml(data) {
289793
289796
  src_logger.debug('Dumping object data to YAML %O', data);
289794
- return yaml_dist.stringify(data, { defaultStringType: 'QUOTE_DOUBLE' });
289797
+ return yaml_dist.stringify(data, {
289798
+ defaultKeyType: null,
289799
+ defaultStringType: 'QUOTE_DOUBLE',
289800
+ });
289795
289801
  }
289796
289802
 
289797
289803
  // EXTERNAL MODULE: external "child_process"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.50.1-snapshot-14",
3
+ "version": "1.50.1-snapshot-16",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",