@evanpurkhiser/eslint-config 0.13.0 → 0.15.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,18 +2,13 @@ name: publish
2
2
 
3
3
  on:
4
4
  push:
5
- tags: [ 'v*' ]
5
+ tags: ['v*']
6
6
 
7
7
  jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v2
12
- - uses: actions/setup-node@v1
13
- with:
14
- node-version: 12.x
15
- registry-url: https://registry.npmjs.org/
16
- - run: yarn install
17
- - run: npm publish --access public
18
- env:
19
- NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
11
+ - uses: actions/checkout@v3
12
+ - uses: volta-cli/action@v4
13
+ - run: npm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_AUTH_TOKEN }}
14
+ - run: npm publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanpurkhiser/eslint-config",
3
- "version": "0.13.0",
3
+ "version": "0.15.0",
4
4
  "description": "Evan Purkhiser's personal eslint configuration",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/evanpurkhiser/eslint-config",
@@ -9,9 +9,7 @@
9
9
  "dependencies": {
10
10
  "@typescript-eslint/eslint-plugin": "^5.40.1",
11
11
  "@typescript-eslint/parser": "^5.40.1",
12
- "babel-eslint": "^10.0.1",
13
- "eslint-config-prettier": "^8.5.0",
14
- "eslint-plugin-babel": "^5.3.1",
12
+ "eslint-config-prettier": "^8.8.0",
15
13
  "eslint-plugin-import": "^2.26.0",
16
14
  "eslint-plugin-prettier": "^4.2.1",
17
15
  "eslint-plugin-react": "^7.31.10",
@@ -23,10 +21,14 @@
23
21
  "prettier": ">=2.0.0"
24
22
  },
25
23
  "devDependencies": {
26
- "prettier": "^2.7.1"
24
+ "prettier": "^3.0.0"
27
25
  },
28
26
  "volta": {
29
- "node": "16.18.0",
30
- "yarn": "1.22.18"
27
+ "node": "18.11.0",
28
+ "yarn": "1.22.19"
29
+ },
30
+ "publishConfig": {
31
+ "registry": "https://registry.npmjs.org",
32
+ "access": "public"
31
33
  }
32
34
  }