@saasquatch/component-environment 1.0.5 → 1.0.6-1

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,7 +366,7 @@ 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
- if (locale && /^[a-z]{2}_(?:[A-Z]{2}|[0-9]{3})$/.test(locale)) {
369
+ if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
370
370
  return locale;
371
371
  }
372
372
  }
package/dist/index.mjs CHANGED
@@ -317,7 +317,7 @@ 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
- if (locale && /^[a-z]{2}_(?:[A-Z]{2}|[0-9]{3})$/.test(locale)) {
320
+ if (locale && /^[a-z]{2}(_(?:[A-Z]{2}|[0-9]{3}))?$/.test(locale)) {
321
321
  return locale;
322
322
  }
323
323
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasquatch/component-environment",
3
- "version": "1.0.5",
3
+ "version": "1.0.6-1",
4
4
  "description": "Environment and contexts for SaaSquatch components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",