isaacscript 1.2.39 → 1.2.40

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.2.39",
3
+ "version": "1.2.40",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript",
5
5
  "homepage": "https://isaacscript.github.io/",
6
6
  "bugs": {
@@ -26,7 +26,7 @@ npx cspell --no-progress --no-summary "mod/metadata.xml"
26
26
 
27
27
  # Step 4 - Use xmllint to lint XML files
28
28
  # (and skip this step if xmllint is not currently installed for whatever reason)
29
- if ! command -v xmllint &> /dev/null; then
29
+ if command -v xmllint &> /dev/null; then
30
30
  find "$DIR/mod" -name "*.xml" -print0 | xargs -0 xmllint --noout
31
31
  fi
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "1.2.39",
3
+ "version": "1.2.40",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript",
5
5
  "homepage": "https://isaacscript.github.io/",
6
6
  "bugs": {