isaacscript 3.6.53 → 3.6.54
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,8 +18,9 @@ npx prettier --log-level=warn --check .
|
|
|
18
18
|
# "--max-warnings 0" makes warnings fail in CI, since we set all ESLint errors to warnings.
|
|
19
19
|
npx eslint --max-warnings 0 .
|
|
20
20
|
|
|
21
|
-
# Check for unused
|
|
22
|
-
|
|
21
|
+
# Check for unused exports.
|
|
22
|
+
# "--error" makes it return an error code of 1 if unused exports are found.
|
|
23
|
+
npx ts-prune --error
|
|
23
24
|
|
|
24
25
|
# Use `isaac-xml-validator` to validate XML files.
|
|
25
26
|
# (Skip this step if Python is not currently installed for whatever reason.)
|