@saasquatch/component-environment 1.0.6-2 → 1.0.6-3

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/dist/index.js CHANGED
@@ -366,6 +366,10 @@ var import_dom_context2 = require("dom-context");
366
366
  var import_dom_context = require("dom-context");
367
367
  var debug3 = (...args) => debug(LOCALE_CONTEXT_NAME, ...args);
368
368
  function validateLocale(locale) {
369
+ debug3("validateLocale", {
370
+ locale,
371
+ isValid: /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale || "")
372
+ });
369
373
  if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
370
374
  return locale;
371
375
  }
package/dist/index.mjs CHANGED
@@ -317,6 +317,10 @@ import { ContextListener } from "dom-context";
317
317
  import { ContextProvider } from "dom-context";
318
318
  var debug3 = (...args) => debug(LOCALE_CONTEXT_NAME, ...args);
319
319
  function validateLocale(locale) {
320
+ debug3("validateLocale", {
321
+ locale,
322
+ isValid: /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale || "")
323
+ });
320
324
  if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
321
325
  return locale;
322
326
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasquatch/component-environment",
3
- "version": "1.0.6-2",
3
+ "version": "1.0.6-3",
4
4
  "description": "Environment and contexts for SaaSquatch components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",