isaacscript 3.19.3 → 3.21.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.
@@ -2,20 +2,17 @@ runs:
2
2
  using: composite
3
3
 
4
4
  steps:
5
+ # https://github.com/actions/setup-node/issues/899
6
+ - name: Enable corepack to workaround a setup-node bug
7
+ run: corepack enable
8
+ shell: bash # Composite jobs must specify the shell.
9
+
5
10
  - name: Setup Node.js
6
- uses: actions/setup-node@v3
11
+ uses: actions/setup-node@v4
7
12
  with:
8
13
  node-version: lts/*
9
14
  cache: PACKAGE_MANAGER_NAME
10
15
 
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'
16
+ - name: Install dependencies
20
17
  run: PACKAGE_MANAGER_INSTALL_COMMAND
21
18
  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
 
@@ -8,9 +8,11 @@
8
8
  "useGitignore": true,
9
9
  "ignorePaths": [
10
10
  "*.anm2",
11
+ "*.mp3",
11
12
  "*.ogg",
12
13
  "*.pyc",
13
14
  "*.stb",
15
+ "*.svg",
14
16
  "*.wav",
15
17
  ".git/**",
16
18
  ".yarn/**",
@@ -6,7 +6,9 @@
6
6
  "enableGlobDot": true,
7
7
  "useGitignore": true,
8
8
  "ignorePaths": [
9
+ "*.mp3",
9
10
  "*.pyc",
11
+ "*.svg",
10
12
  ".git/**",
11
13
  ".yarn/**",
12
14
  "dist/**",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.19.3",
3
+ "version": "3.21.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",