typed-factorio 3.11.0 → 3.13.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typed-factorio",
3
- "version": "3.11.0",
3
+ "version": "3.13.0",
4
4
  "description": "Featureful typescript definitions for the Factorio modding api.",
5
5
  "keywords": [
6
6
  "factorio",
@@ -28,9 +28,10 @@
28
28
  "lint": "eslint .",
29
29
  "format:check": "prettier --check .",
30
30
  "format:fix": "prettier --write .",
31
- "check": "npm run lint && npm run format:check && tsc --noEmit",
31
+ "check": "npm run check-clean-tree && npm run lint && npm run format:check && tsc --noEmit",
32
32
  "prepublishOnly": "npm run generate && npm run check",
33
33
  "script": "tsx --tsconfig scripts/tsconfig.json",
34
+ "check-clean-tree": "git diff --exit-code || (echo \"Generated files are out of date. Please run 'npm run generate' and commit the changes.\" && exit 1)",
34
35
  "download-latest-api-jsons": "npm run script ./scripts/download-latest.ts",
35
36
  "new-version-changelog": "npm run script ./scripts/new-version-changelog.ts",
36
37
  "get-current-factorio-version": "npm run script ./scripts/get-current-version.ts",
@@ -61,5 +62,5 @@
61
62
  "typescript": "~5.4.2",
62
63
  "typescript-to-lua": "^1.25.0"
63
64
  },
64
- "factorioVersion": "2.0.29"
65
+ "factorioVersion": "2.0.32"
65
66
  }