isaacscript 1.1.51 → 1.1.52

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "1.1.51",
3
+ "version": "1.1.52",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript",
5
5
  "homepage": "https://isaacscript.github.io/",
6
6
  "bugs": {
@@ -41,6 +41,6 @@
41
41
  "@types/source-map-support": "^0.5.4",
42
42
  "@types/update-notifier": "^5.1.0",
43
43
  "@types/yargs": "^17.0.7",
44
- "isaacscript-lint": "^1.0.71"
44
+ "isaacscript-lint": "^1.0.72"
45
45
  }
46
46
  }
@@ -25,6 +25,6 @@ npx eslint --max-warnings 0 src
25
25
  # Step 2 - Spell check every file using cspell
26
26
  # We use no-progress and no-summary because we want to only output errors
27
27
  npx cspell --no-progress --no-summary "src/**/*.ts"
28
- npx cspell --no-progress --no-summary "mods/metadata.xml"
28
+ npx cspell --no-progress --no-summary "mod/metadata.xml"
29
29
 
30
30
  echo "Successfully linted in $SECONDS seconds."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "1.1.51",
3
+ "version": "1.1.52",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript",
5
5
  "homepage": "https://isaacscript.github.io/",
6
6
  "bugs": {
@@ -41,6 +41,6 @@
41
41
  "@types/source-map-support": "^0.5.4",
42
42
  "@types/update-notifier": "^5.1.0",
43
43
  "@types/yargs": "^17.0.7",
44
- "isaacscript-lint": "^1.0.71"
44
+ "isaacscript-lint": "^1.0.72"
45
45
  }
46
46
  }
@@ -46,7 +46,7 @@ export async function init(argv: Record<string, unknown>): Promise<void> {
46
46
  }
47
47
 
48
48
  function getVSCodeCommand() {
49
- for (const VSCodeCommand of ["code", "codium", "code-oss"]) {
49
+ for (const VSCodeCommand of ["code", "codium", "code-oss", "code-insiders"]) {
50
50
  if (commandExists.sync(VSCodeCommand)) {
51
51
  return VSCodeCommand;
52
52
  }