isaacscript-lint 1.0.63 → 1.0.67

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/README.md CHANGED
@@ -14,7 +14,7 @@ Use the `isaacscript init` tool to automatically set up a new mod that has `isaa
14
14
 
15
15
  <br />
16
16
 
17
- ## For Use in a Typescript Project
17
+ ## For Use in a TypeScript / TypeScriptToLua Project
18
18
 
19
19
  `isaacscript-lint` is a great starting point for any TypeScript project. It's a pain in the ass to get ESLint working with TypeScript and to get everything working properly. Don't clutter your `package.json` file with 15+ different ESlint-related depedencies; just use `isaacscript-lint`.
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "1.0.63",
3
+ "version": "1.0.67",
4
4
  "description": "An updatable linting dependency container for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,29 +9,29 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "dependencies": {
12
- "@typescript-eslint/eslint-plugin": "^4.31.2",
13
- "@typescript-eslint/parser": "^4.31.2",
14
- "cspell": "^5.12.3",
15
- "eslint": "^7.32.0",
16
- "eslint-config-airbnb-base": "^14.2.1",
17
- "eslint-config-airbnb-typescript": "^14.0.1",
18
- "eslint-config-isaacscript": "^1.0.50",
12
+ "@typescript-eslint/eslint-plugin": "^5.4.0",
13
+ "@typescript-eslint/parser": "^5.4.0",
14
+ "cspell": "^5.13.0",
15
+ "eslint": "^8.2.0",
16
+ "eslint-config-airbnb-base": "^15.0.0",
17
+ "eslint-config-airbnb-typescript": "^16.0.0",
18
+ "eslint-config-isaacscript": "^1.0.51",
19
19
  "eslint-config-prettier": "^8.3.0",
20
20
  "eslint-plugin-eqeqeq-fix": "^1.0.3",
21
21
  "eslint-plugin-eslint-comments": "^3.2.0",
22
- "eslint-plugin-import": "^2.24.2",
23
- "eslint-plugin-jsdoc": "^36.1.1",
22
+ "eslint-plugin-import": "^2.25.3",
23
+ "eslint-plugin-jsdoc": "^37.0.3",
24
24
  "eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
25
25
  "eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
26
26
  "eslint-plugin-no-void-return-type": "^1.0.2",
27
27
  "eslint-plugin-only-warn": "^1.0.3",
28
28
  "eslint-plugin-prettier": "^4.0.0",
29
- "isaacscript-tsconfig": "^1.1.4",
29
+ "isaacscript-tsconfig": "^1.1.6",
30
30
  "prettier": "^2.4.1",
31
31
  "prettier-plugin-organize-imports": "^2.3.4",
32
32
  "ts-prune": "^0.10.1"
33
33
  },
34
34
  "peerDependencies": {
35
- "typescript": "^4.4.3"
35
+ "typescript": "4.4.4"
36
36
  }
37
37
  }
package/publish.sh CHANGED
@@ -8,4 +8,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
8
8
 
9
9
  cd "$DIR"
10
10
  pip install publish-npm --upgrade --quiet
11
- publish-npm "$@" --skip-update
11
+ publish-npm "$@"
package/update.sh CHANGED
@@ -10,7 +10,7 @@ cd "$DIR"
10
10
 
11
11
  PACKAGE_JSON="$DIR/package.json"
12
12
  OLD_HASH=$(md5sum "$PACKAGE_JSON")
13
- npx npm-check-updates --upgrade --packageFile "$PACKAGE_JSON"
13
+ npx npm-check-updates --upgrade --packageFile "$PACKAGE_JSON" --reject typescript
14
14
  NEW_HASH=$(md5sum "$PACKAGE_JSON")
15
15
  if [[ $OLD_HASH != $NEW_HASH ]]; then
16
16
  npm install