isaacscript 3.34.1 → 3.36.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.
@@ -7,24 +7,26 @@
7
7
  "enableGlobDot": true,
8
8
  "useGitignore": true,
9
9
  "ignorePaths": [
10
- "*.anm2",
10
+ "*.min.js",
11
11
  "*.mp3",
12
- "*.ogg",
13
12
  "*.pyc",
14
- "*.stb",
15
13
  "*.svg",
16
- "*.wav",
17
14
  ".git/**",
18
15
  ".yarn/**",
19
16
  "dist/**",
20
17
  "LICENSE",
21
- "mod/main.lua",
22
- "mod/content/rooms/**",
23
- "mod/resources/rooms/**",
24
18
  "node_modules/**",
25
19
  "package-lock.json",
26
20
  "pnpm-lock.yaml",
27
21
  "yarn.lock",
22
+ // Isaac-specific additions.
23
+ "*.anm2",
24
+ "*.ogg",
25
+ "*.stb",
26
+ "*.wav",
27
+ "mod/main.lua",
28
+ "mod/content/rooms/**",
29
+ "mod/resources/rooms/**",
28
30
  ],
29
31
  "words": [],
30
32
  }
@@ -7,6 +7,7 @@
7
7
  "enableGlobDot": true,
8
8
  "useGitignore": true,
9
9
  "ignorePaths": [
10
+ "*.min.js",
10
11
  "*.mp3",
11
12
  "*.pyc",
12
13
  "*.svg",
@@ -9,8 +9,8 @@ const config = {
9
9
  "eslint-config-isaacscript/base",
10
10
  ],
11
11
 
12
- // Don't bother linting the compiled output.
13
- ignorePatterns: ["**/dist/**"],
12
+ // Don't bother linting compiled output.
13
+ ignorePatterns: ["**/dist/**", "*.min.js"],
14
14
 
15
15
  parserOptions: {
16
16
  // ESLint needs to know about the project's TypeScript settings in order for TypeScript-specific
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.34.1",
3
+ "version": "3.36.0",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -49,8 +49,8 @@
49
49
  "chalk": "^5.3.0",
50
50
  "commander": "^11.1.0",
51
51
  "figlet": "^1.7.0",
52
- "isaacscript-common-node": "^2.0.0",
53
- "isaacscript-common-ts": "^13.1.5",
52
+ "isaacscript-common-node": "^3.0.0",
53
+ "isaacscript-common-ts": "^13.1.8",
54
54
  "jsonc-parser": "^3.2.0",
55
55
  "klaw-sync": "^6.0.0",
56
56
  "moment": "^2.29.4",