isaacscript 3.19.3 → 3.20.0

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.
@@ -3,19 +3,11 @@ runs:
3
3
 
4
4
  steps:
5
5
  - name: Setup Node.js
6
- uses: actions/setup-node@v3
6
+ uses: actions/setup-node@v4
7
7
  with:
8
8
  node-version: lts/*
9
9
  cache: PACKAGE_MANAGER_NAME
10
10
 
11
- - name: Retrieve the cached "node_modules" directory (if present)
12
- uses: actions/cache@v3
13
- id: node-modules-cache
14
- with:
15
- path: node_modules
16
- key: node-modules-${{ hashFiles('PACKAGE_MANAGER_LOCK_FILE_NAME') }}
17
-
18
- - name: Install dependencies (if the cached directory was not found)
19
- if: steps.node-modules-cache.outputs.cache-hit != 'true'
11
+ - name: Install dependencies
20
12
  run: PACKAGE_MANAGER_INSTALL_COMMAND
21
13
  shell: bash # Composite jobs must specify the shell.
@@ -6,14 +6,14 @@ jobs:
6
6
  build:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
- - uses: actions/checkout@v3
9
+ - uses: actions/checkout@v4
10
10
  - uses: ./.github/workflows/setup
11
11
  - run: npm run build
12
12
 
13
13
  lint:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - uses: actions/checkout@v3
16
+ - uses: actions/checkout@v4
17
17
  - uses: ./.github/workflows/setup
18
18
  - run: npm run lint
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.19.3",
3
+ "version": "3.20.0",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -51,7 +51,7 @@
51
51
  "commander": "^11.1.0",
52
52
  "figlet": "^1.7.0",
53
53
  "isaacscript-common-node": "^1.2.0",
54
- "isaacscript-common-ts": "^11.3.1",
54
+ "isaacscript-common-ts": "^11.4.0",
55
55
  "jsonc-parser": "^3.2.0",
56
56
  "klaw-sync": "^6.0.0",
57
57
  "moment": "^2.29.4",