@sankyu/circle-flags-core 1.5.4 → 1.5.5

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.cjs CHANGED
@@ -359,6 +359,7 @@ var FLAG_REGISTRY = {
359
359
  "us-tx": "FlagUsTx",
360
360
  "la": "FlagLa",
361
361
  "et-am": "FlagEtAm",
362
+ "es-vc": "FlagEsVc",
362
363
  "to": "FlagTo",
363
364
  "aq": "FlagAq",
364
365
  "gb-eng": "FlagGbEng",
@@ -780,6 +781,7 @@ var COUNTRY_NAMES = {
780
781
  "tz-zanzibar": "Tanzania (Zanzibar), Tanzania",
781
782
  "kanuri": "Kanuri",
782
783
  "mt-civil_ensign": "Malta (civil ensign), Malta",
784
+ "es-vc": "ES-VC",
783
785
  "gb-eng": "England, United Kingdom",
784
786
  "gb-sct": "Scotland, United Kingdom",
785
787
  "malayali": "Malayali",
package/dist/index.d.cts CHANGED
@@ -394,6 +394,7 @@ declare const FLAG_REGISTRY: {
394
394
  readonly "us-tx": "FlagUsTx";
395
395
  readonly la: "FlagLa";
396
396
  readonly "et-am": "FlagEtAm";
397
+ readonly "es-vc": "FlagEsVc";
397
398
  readonly to: "FlagTo";
398
399
  readonly aq: "FlagAq";
399
400
  readonly "gb-eng": "FlagGbEng";
@@ -815,6 +816,7 @@ declare const COUNTRY_NAMES: {
815
816
  readonly "tz-zanzibar": "Tanzania (Zanzibar), Tanzania";
816
817
  readonly kanuri: "Kanuri";
817
818
  readonly "mt-civil_ensign": "Malta (civil ensign), Malta";
819
+ readonly "es-vc": "ES-VC";
818
820
  readonly "gb-eng": "England, United Kingdom";
819
821
  readonly "gb-sct": "Scotland, United Kingdom";
820
822
  readonly malayali: "Malayali";
package/dist/index.d.ts CHANGED
@@ -394,6 +394,7 @@ declare const FLAG_REGISTRY: {
394
394
  readonly "us-tx": "FlagUsTx";
395
395
  readonly la: "FlagLa";
396
396
  readonly "et-am": "FlagEtAm";
397
+ readonly "es-vc": "FlagEsVc";
397
398
  readonly to: "FlagTo";
398
399
  readonly aq: "FlagAq";
399
400
  readonly "gb-eng": "FlagGbEng";
@@ -815,6 +816,7 @@ declare const COUNTRY_NAMES: {
815
816
  readonly "tz-zanzibar": "Tanzania (Zanzibar), Tanzania";
816
817
  readonly kanuri: "Kanuri";
817
818
  readonly "mt-civil_ensign": "Malta (civil ensign), Malta";
819
+ readonly "es-vc": "ES-VC";
818
820
  readonly "gb-eng": "England, United Kingdom";
819
821
  readonly "gb-sct": "Scotland, United Kingdom";
820
822
  readonly malayali: "Malayali";
package/dist/index.mjs CHANGED
@@ -357,6 +357,7 @@ var FLAG_REGISTRY = {
357
357
  "us-tx": "FlagUsTx",
358
358
  "la": "FlagLa",
359
359
  "et-am": "FlagEtAm",
360
+ "es-vc": "FlagEsVc",
360
361
  "to": "FlagTo",
361
362
  "aq": "FlagAq",
362
363
  "gb-eng": "FlagGbEng",
@@ -778,6 +779,7 @@ var COUNTRY_NAMES = {
778
779
  "tz-zanzibar": "Tanzania (Zanzibar), Tanzania",
779
780
  "kanuri": "Kanuri",
780
781
  "mt-civil_ensign": "Malta (civil ensign), Malta",
782
+ "es-vc": "ES-VC",
781
783
  "gb-eng": "England, United Kingdom",
782
784
  "gb-sct": "Scotland, United Kingdom",
783
785
  "malayali": "Malayali",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankyu/circle-flags-core",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Shared core utilities for circle-flags packages",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -22,8 +22,10 @@
22
22
  "access": "public"
23
23
  },
24
24
  "scripts": {
25
+ "prebuild": "node ../../scripts/ensure-generated.mjs",
25
26
  "build": "tsup",
26
27
  "dev": "tsup --watch",
28
+ "pretypecheck": "node ../../scripts/ensure-generated.mjs",
27
29
  "typecheck": "tsc --noEmit"
28
30
  },
29
31
  "repository": {