isaacscript 3.4.5 → 3.4.6

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.
@@ -31,7 +31,7 @@ CSPELL_CONFIG_TEMP_PATH="/tmp/cspell-temp.json"
31
31
  mv "$CSPELL_CONFIG_PATH" "$CSPELL_CONFIG_TEMP_PATH"
32
32
  echo "$CSPELL_CONFIG_WITHOUT_WORDS" > "$CSPELL_CONFIG_PATH"
33
33
  MISSPELLED_WORDS_PATH="/tmp/misspelled-words.txt"
34
- npx cspell lint --no-progress --no-summary --unique --words-only | sort --ignore-case --unique > "$MISSPELLED_WORDS_PATH"
34
+ npx cspell --no-progress --no-summary --unique --words-only . | sort --ignore-case --unique > "$MISSPELLED_WORDS_PATH"
35
35
  mv "$CSPELL_CONFIG_TEMP_PATH" "$CSPELL_CONFIG_PATH"
36
36
 
37
37
  # Check that each "cspell.json" word is actually being used.
@@ -15,7 +15,7 @@ npx prettier --check .
15
15
 
16
16
  # Step 2 - Use ESLint to lint the TypeScript.
17
17
  # We use "--max-warnings" so that any warnings will fail in CI.
18
- npx eslint --max-warnings 0 src
18
+ npx eslint --max-warnings 0 .
19
19
 
20
20
  # Step 3 - Check for unused imports.
21
21
  # The "--error" flag makes it return an error code of 1 if unused exports are found.
@@ -31,7 +31,7 @@ fi
31
31
 
32
32
  # Step 5 - Spell check every file using CSpell.
33
33
  # We use "--no-progress" and "--no-summary" because we want to only output errors.
34
- npx cspell --no-progress --no-summary
34
+ npx cspell --no-progress --no-summary .
35
35
 
36
36
  # Step 6 - Check for orphaned words.
37
37
  bash "$DIR/check-orphaned-words.sh"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.4.5",
3
+ "version": "3.4.6",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -37,14 +37,14 @@
37
37
  "isaacscript-tsconfig": "^3.0.2",
38
38
  "jsonc-parser": "^3.2.0",
39
39
  "moment": "^2.29.4",
40
- "npm-check-updates": "^16.6.2",
40
+ "npm-check-updates": "^16.6.3",
41
41
  "prompt": "^1.3.0",
42
42
  "source-map": "^0.7.4",
43
43
  "source-map-support": "^0.5.21",
44
44
  "sync-directory": "^5.1.9",
45
45
  "touch": "^3.1.0",
46
46
  "tslib": "^2.4.1",
47
- "typescript-to-lua": "^1.12.0",
47
+ "typescript-to-lua": "^1.12.1",
48
48
  "update-notifier": "5.1.0",
49
49
  "xml2js": "^0.4.23",
50
50
  "yaml": "^2.2.1",