xpt-shared-types 1.0.3 → 1.0.4

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/README.md CHANGED
@@ -25,6 +25,14 @@ Shared TypeScript types and data for XPT projects.
25
25
  - Edit shared data in `src/data/`
26
26
  - Run `yarn build` to compile TypeScript
27
27
 
28
+ ## Publish
29
+
30
+ 1. Run `npm login` to authenticate with npm (if not already logged in)
31
+ 2. Run `yarn build` to compile TypeScript
32
+ 3. Run `yarn version --patch` to bump the version (e.g. `1.0.4` → `1.0.5`)
33
+ 4. Run `npm publish` to publish to npm
34
+ 5. Run `git push` to push the version commit and tag to GitHub
35
+
28
36
  ## License
29
37
 
30
38
  MIT
@@ -401,7 +401,7 @@ exports.COUNTRIES_LIST = [
401
401
  {
402
402
  countryName: "Guinea-Bissau",
403
403
  alpha2: "GW",
404
- alpha3: "GBS",
404
+ alpha3: "GNB",
405
405
  numeric: "624",
406
406
  },
407
407
  {
@@ -1090,7 +1090,7 @@ exports.COUNTRIES_LIST = [
1090
1090
  },
1091
1091
  {
1092
1092
  countryName: "United Kingdom",
1093
- alpha2: "GB",
1093
+ alpha2: "GB-UKM",
1094
1094
  alpha3: "GBR",
1095
1095
  numeric: "826",
1096
1096
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xpt-shared-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Shared types and data for XPT projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -400,7 +400,7 @@ export const COUNTRIES_LIST: Country[] = [
400
400
  {
401
401
  countryName: "Guinea-Bissau",
402
402
  alpha2: "GW",
403
- alpha3: "GBS",
403
+ alpha3: "GNB",
404
404
  numeric: "624",
405
405
  },
406
406
  {
@@ -1089,7 +1089,7 @@ export const COUNTRIES_LIST: Country[] = [
1089
1089
  },
1090
1090
  {
1091
1091
  countryName: "United Kingdom",
1092
- alpha2: "GB",
1092
+ alpha2: "GB-UKM",
1093
1093
  alpha3: "GBR",
1094
1094
  numeric: "826",
1095
1095
  },