isaacscript 3.37.0 → 3.38.1

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.
@@ -18,3 +18,8 @@ pull.rebase=true
18
18
  # https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
19
19
  .vscode/*.json linguist-language=JSON-with-Comments
20
20
  tsconfig*.json linguist-language=JSON-with-Comments
21
+
22
+ # Suppress displaying changes on certain files to prevent cluttering commit diffs on GitHub.
23
+ package-lock.json linguist-generated=true
24
+ yarn.lock linguist-generated=true
25
+ pnpm-lock.yaml linguist-generated=true
@@ -10,15 +10,10 @@ const config = {
10
10
  ],
11
11
 
12
12
  overrides: [
13
- // Allow proper formatting of JSONC files:
13
+ // Allow proper formatting of JSONC files that have JSON file extensions:
14
14
  // https://github.com/prettier/prettier/issues/5708
15
15
  {
16
- files: [
17
- "**/*.jsonc",
18
- "**/.vscode/*.json",
19
- "**/tsconfig.json",
20
- "**/tsconfig.*.json",
21
- ],
16
+ files: ["**/.vscode/*.json", "**/tsconfig.json", "**/tsconfig.*.json"],
22
17
  options: {
23
18
  parser: "json5",
24
19
  quoteProps: "preserve",
@@ -9,15 +9,10 @@ const config = {
9
9
  ],
10
10
 
11
11
  overrides: [
12
- // Allow proper formatting of JSONC files:
12
+ // Allow proper formatting of JSONC files that have JSON file extensions:
13
13
  // https://github.com/prettier/prettier/issues/5708
14
14
  {
15
- files: [
16
- "**/*.jsonc",
17
- "**/.vscode/*.json",
18
- "**/tsconfig.json",
19
- "**/tsconfig.*.json",
20
- ],
15
+ files: ["**/.vscode/*.json", "**/tsconfig.json", "**/tsconfig.*.json"],
21
16
  options: {
22
17
  parser: "json5",
23
18
  quoteProps: "preserve",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.37.0",
3
+ "version": "3.38.1",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -50,7 +50,7 @@
50
50
  "commander": "^11.1.0",
51
51
  "figlet": "^1.7.0",
52
52
  "isaacscript-common-node": "^3.0.0",
53
- "isaacscript-common-ts": "^13.6.0",
53
+ "isaacscript-common-ts": "^16.1.0",
54
54
  "jsonc-parser": "^3.2.0",
55
55
  "klaw-sync": "^6.0.0",
56
56
  "moment": "^2.30.1",