@hearthsim/eslint-config-typescript-react 2.0.1 → 3.0.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.
@@ -5,25 +5,28 @@ on:
5
5
  tags:
6
6
  - 'v*.*.*'
7
7
 
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+
8
12
  jobs:
9
13
  build:
10
14
  runs-on: ubuntu-latest
11
15
  steps:
12
- - uses: actions/checkout@v2
13
- - uses: actions/setup-node@v1
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
14
18
  with:
15
- node-version: 12
19
+ node-version: 22
16
20
  - run: yarn install --frozen-lockfile
17
21
 
18
22
  publish-npm:
19
23
  needs: build
20
24
  runs-on: ubuntu-latest
21
25
  steps:
22
- - uses: actions/checkout@v2
23
- - uses: actions/setup-node@v1
26
+ - uses: actions/checkout@v4
27
+ - uses: actions/setup-node@v4
24
28
  with:
25
- node-version: 12
29
+ node-version: 22
26
30
  registry-url: https://registry.npmjs.org/
27
- - run: yarn publish --access public
28
- env:
29
- NODE_AUTH_TOKEN: ${{secrets.NPM_HEARTHSIM_TOKEN}}
31
+ - run: npm install -g npm@latest
32
+ - run: npm publish --access public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hearthsim/eslint-config-typescript-react",
3
- "version": "2.0.1",
3
+ "version": "3.0.0",
4
4
  "description": "HearthSim's presets for ESLint, with Typescript and React support.",
5
5
  "repository": "git@github.com:HearthSim/eslint-config-typescript-react.git",
6
6
  "author": "Benedict Etzel <benedict@hearthsim.net>",
@@ -10,24 +10,24 @@
10
10
  "format": "prettier --write *.js"
11
11
  },
12
12
  "peerDependencies": {
13
- "@typescript-eslint/eslint-plugin": "^5.4.0",
14
- "eslint": "^6.8.0 || ^7.2.0 || ^8.0.0",
13
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
14
+ "eslint": "^8.57.0 || ^9.0.0",
15
15
  "eslint-plugin-import": "^2.25.3",
16
16
  "eslint-plugin-jest": "^25.2.4",
17
17
  "eslint-plugin-react": "^7.27.1",
18
18
  "eslint-plugin-react-hooks": "^4.3.0",
19
19
  "prettier": ">=2.0.0",
20
- "typescript": ">=2.8.0"
20
+ "typescript": ">=4.8.4"
21
21
  },
22
22
  "dependencies": {
23
- "@hearthsim/eslint-config-typescript": "^2.0.0",
24
- "@typescript-eslint/parser": "5.4.0",
23
+ "@hearthsim/eslint-config-typescript": "^3.0.0",
24
+ "@typescript-eslint/parser": "8.62.1",
25
25
  "eslint-config-prettier": "^8.3.0"
26
26
  },
27
27
  "devDependencies": {
28
- "eslint": "^8.0.0",
28
+ "eslint": "^8.57.0",
29
29
  "prettier": "^2.2.1",
30
- "typescript": "^4.0.0"
30
+ "typescript": "^5.0.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"