@formatjs/cli 6.3.5 → 6.3.6

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/bin/formatjs +18 -8
  2. package/package.json +2 -2
package/bin/formatjs CHANGED
@@ -8900,7 +8900,7 @@ var require_loud_rejection = __commonJS({
8900
8900
  }
8901
8901
  });
8902
8902
 
8903
- // node_modules/.aspect_rules_js/tslib@2.8.0/node_modules/tslib/tslib.es6.mjs
8903
+ // node_modules/.aspect_rules_js/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs
8904
8904
  var tslib_es6_exports = {};
8905
8905
  __export(tslib_es6_exports, {
8906
8906
  __addDisposableResource: () => __addDisposableResource,
@@ -9296,9 +9296,9 @@ function __importStar(mod) {
9296
9296
  return mod;
9297
9297
  var result = {};
9298
9298
  if (mod != null) {
9299
- for (var k in mod)
9300
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
9301
- __createBinding(result, mod, k);
9299
+ for (var k = ownKeys(mod), i = 0; i < k.length; i++)
9300
+ if (k[i] !== "default")
9301
+ __createBinding(result, mod, k[i]);
9302
9302
  }
9303
9303
  __setModuleDefault(result, mod);
9304
9304
  return result;
@@ -9399,9 +9399,9 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
9399
9399
  }
9400
9400
  return path;
9401
9401
  }
9402
- var extendStatics, __assign, __createBinding, __setModuleDefault, _SuppressedError, tslib_es6_default;
9402
+ var extendStatics, __assign, __createBinding, __setModuleDefault, ownKeys, _SuppressedError, tslib_es6_default;
9403
9403
  var init_tslib_es6 = __esm({
9404
- "node_modules/.aspect_rules_js/tslib@2.8.0/node_modules/tslib/tslib.es6.mjs"() {
9404
+ "node_modules/.aspect_rules_js/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs"() {
9405
9405
  extendStatics = function(d, b) {
9406
9406
  extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
9407
9407
  d2.__proto__ = b2;
@@ -9444,6 +9444,16 @@ var init_tslib_es6 = __esm({
9444
9444
  } : function(o, v) {
9445
9445
  o["default"] = v;
9446
9446
  };
9447
+ ownKeys = function(o) {
9448
+ ownKeys = Object.getOwnPropertyNames || function(o2) {
9449
+ var ar = [];
9450
+ for (var k in o2)
9451
+ if (Object.prototype.hasOwnProperty.call(o2, k))
9452
+ ar[ar.length] = k;
9453
+ return ar;
9454
+ };
9455
+ return ownKeys(o);
9456
+ };
9447
9457
  _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function(error, suppressed, message) {
9448
9458
  var e = new Error(message);
9449
9459
  return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
@@ -64109,8 +64119,8 @@ ${lanes.join("\n")}
64109
64119
  }
64110
64120
  function getSubstitutedMapLikeOfStringArrayWithConfigDirTemplate(mapLike, basePath) {
64111
64121
  let result;
64112
- const ownKeys = getOwnKeys(mapLike);
64113
- ownKeys.forEach((key) => {
64122
+ const ownKeys2 = getOwnKeys(mapLike);
64123
+ ownKeys2.forEach((key) => {
64114
64124
  if (!isArray(mapLike[key]))
64115
64125
  return;
64116
64126
  const subStitution = getSubstitutedStringArrayWithConfigDirTemplate(mapLike[key], basePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/cli",
3
- "version": "6.3.5",
3
+ "version": "6.3.6",
4
4
  "description": "A CLI for formatjs.",
5
5
  "keywords": [
6
6
  "intl",
@@ -33,7 +33,7 @@
33
33
  "url": "https://github.com/formatjs/formatjs/issues"
34
34
  },
35
35
  "devDependencies": {
36
- "@formatjs/cli-lib": "6.6.1"
36
+ "@formatjs/cli-lib": "6.6.2"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@glimmer/env": "^0.1.7",