isaacscript 3.6.32 → 3.6.34

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.
@@ -7,22 +7,25 @@ set -euo pipefail # Exit on errors and undefined variables.
7
7
  DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
8
8
 
9
9
  NPM_LOCK="$DIR/package-lock.json"
10
+ NPM_LOCK_EXISTS=""
10
11
  if [[ -f "$NPM_LOCK" ]]; then
11
- NPM_LOCK_EXISTS=1
12
+ NPM_LOCK_EXISTS="1"
12
13
  rm -f "$NPM_LOCK"
13
14
  echo "Successfully deleted: $NPM_LOCK"
14
15
  fi
15
16
 
16
17
  YARN_LOCK="$DIR/yarn.lock"
18
+ YARN_LOCK_EXISTS=""
17
19
  if [[ -f "$YARN_LOCK" ]]; then
18
- YARN_LOCK_EXISTS=1
20
+ YARN_LOCK_EXISTS="1"
19
21
  rm -f "$YARN_LOCK"
20
22
  echo "Successfully deleted: $YARN_LOCK"
21
23
  fi
22
24
 
23
25
  PNPM_LOCK="$DIR/pnpm-lock.yaml"
26
+ PNPM_LOCK_EXISTS=""
24
27
  if [[ -f "$PNPM_LOCK" ]]; then
25
- PNPM_LOCK_EXISTS=1
28
+ PNPM_LOCK_EXISTS="1"
26
29
  rm -f "$PNPM_LOCK"
27
30
  echo "Successfully deleted: $PNPM_LOCK"
28
31
  fi
@@ -4,6 +4,6 @@
4
4
  "recommendations": [
5
5
  "esbenp.prettier-vscode", // The TypeScript formatter
6
6
  "dbaeumer.vscode-eslint", // The TypeScript linter
7
- "streetsidesoftware.code-spell-checker", // A spell-checker extension based on cspell
7
+ "streetsidesoftware.code-spell-checker", // A spell-checker extension based on CSpell
8
8
  ],
9
9
  }
@@ -9,18 +9,21 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
9
9
  SECONDS=0
10
10
 
11
11
  NPM_LOCK="$DIR/package-lock.json"
12
+ NPM_LOCK_EXISTS=""
12
13
  if [[ -f "$NPM_LOCK" ]]; then
13
- NPM_LOCK_EXISTS=1
14
+ NPM_LOCK_EXISTS="1"
14
15
  fi
15
16
 
16
17
  YARN_LOCK="$DIR/yarn.lock"
18
+ YARN_LOCK_EXISTS=""
17
19
  if [[ -f "$YARN_LOCK" ]]; then
18
- YARN_LOCK_EXISTS=1
20
+ YARN_LOCK_EXISTS="1"
19
21
  fi
20
22
 
21
23
  PNPM_LOCK="$DIR/pnpm-lock.yaml"
24
+ PNPM_LOCK_EXISTS=""
22
25
  if [[ -f "$PNPM_LOCK" ]]; then
23
- PNPM_LOCK_EXISTS=1
26
+ PNPM_LOCK_EXISTS="1"
24
27
  fi
25
28
 
26
29
  if [[ -z "$NPM_LOCK_EXISTS" && -z "$YARN_LOCK_EXISTS" && -z "$PNPM_LOCK_EXISTS" ]]; then
@@ -7,18 +7,21 @@ set -euo pipefail # Exit on errors and undefined variables.
7
7
  DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
8
8
 
9
9
  NPM_LOCK="$DIR/package-lock.json"
10
+ NPM_LOCK_EXISTS=""
10
11
  if [[ -f "$NPM_LOCK" ]]; then
11
- NPM_LOCK_EXISTS=1
12
+ NPM_LOCK_EXISTS="1"
12
13
  fi
13
14
 
14
15
  YARN_LOCK="$DIR/yarn.lock"
16
+ YARN_LOCK_EXISTS=""
15
17
  if [[ -f "$YARN_LOCK" ]]; then
16
- YARN_LOCK_EXISTS=1
18
+ YARN_LOCK_EXISTS="1"
17
19
  fi
18
20
 
19
21
  PNPM_LOCK="$DIR/pnpm-lock.yaml"
22
+ PNPM_LOCK_EXISTS=""
20
23
  if [[ -f "$PNPM_LOCK" ]]; then
21
- PNPM_LOCK_EXISTS=1
24
+ PNPM_LOCK_EXISTS="1"
22
25
  fi
23
26
 
24
27
  if [[ -z "$NPM_LOCK_EXISTS" && -z "$YARN_LOCK_EXISTS" && -z "$PNPM_LOCK_EXISTS" ]]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.6.32",
3
+ "version": "3.6.34",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -44,7 +44,7 @@
44
44
  "typescript-to-lua": "^1.13.1",
45
45
  "xml2js": "^0.4.23",
46
46
  "yaml": "^2.2.1",
47
- "yargs": "^17.6.2"
47
+ "yargs": "^17.7.0"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "typescript": ">= 4.0.0"