isaacscript 5.1.0 → 5.2.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.
@@ -1,7 +1,7 @@
1
1
  import { $, lintScript } from "complete-node";
2
2
 
3
3
  await lintScript(async () => {
4
- const promises = [
4
+ await Promise.all([
5
5
  // Use TypeScript to type-check the code.
6
6
  $`tsc --noEmit`,
7
7
  $`tsc --noEmit --project ./scripts/tsconfig.json`,
@@ -26,7 +26,5 @@ await lintScript(async () => {
26
26
 
27
27
  // Check for template updates.
28
28
  $`isaacscript check-ts`,
29
- ];
30
-
31
- await Promise.all(promises);
29
+ ]);
32
30
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -67,7 +67,7 @@
67
67
  "@types/source-map-support": "^0.5.10",
68
68
  "@types/xml2js": "^0.4.14",
69
69
  "ts-json-schema-generator": "^2.3.0",
70
- "typescript-eslint": "^8.9.0"
70
+ "typescript-eslint": "^8.10.0"
71
71
  },
72
72
  "peerDependencies": {
73
73
  "typescript": ">= 5.0.0",