@flesh-and-blood/types 4.0.9 → 4.0.13

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.
@@ -1,8 +1,4 @@
1
- import {
2
- Treatment,
3
- Foiling,
4
- ReleaseEdition
5
- } from "../interfaces.js";
1
+ import { Treatment, Foiling, ReleaseEdition } from "../interfaces.js";
6
2
  import { fullSetIdentifiers } from "../sets.js";
7
3
  const identifierExtensionMapping = {
8
4
  // [Release.RhinarBlitzDeck]: "-Blitz",
package/dist/sets.js CHANGED
@@ -2050,7 +2050,7 @@ const setIdentifierToSetMappings = {
2050
2050
  xxx: Release.Promos,
2051
2051
  win: Release.Promos
2052
2052
  };
2053
- let tempSetToSetIdentifierMappings = {};
2053
+ const tempSetToSetIdentifierMappings = {};
2054
2054
  for (const [setIdentifier, set] of Object.entries(setIdentifierToSetMappings)) {
2055
2055
  const entry = tempSetToSetIdentifierMappings[set];
2056
2056
  if (entry) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flesh-and-blood/types",
3
3
  "description": "TypeScript representations of Flesh and Blood card types",
4
- "version": "4.0.9",
4
+ "version": "4.0.13",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "main": "dist/index.cjs",
@@ -34,6 +34,7 @@
34
34
  "build:cjs": "esbuild src/index.ts --outfile=dist/index.cjs --bundle --minify --format=cjs --platform=node --target=es2020",
35
35
  "postbuild": "tsc --declaration",
36
36
  "test": "jest",
37
+ "typecheck": "tsc -p tsconfig.typecheck.json",
37
38
  "full": "npm i && npm run build && npm test",
38
39
  "prepublish": "npm run full"
39
40
  },
@@ -71,5 +72,5 @@
71
72
  "FAB",
72
73
  "FABTCG"
73
74
  ],
74
- "gitHead": "87086b9fda463579a9f529e669a0184bc6caf500"
75
+ "gitHead": "1dca52ed778458fff070ade316e70655e8bc4071"
75
76
  }