@evanpurkhiser/eslint-config 0.13.0 → 0.14.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.
@@ -1,19 +1,16 @@
1
1
  name: publish
2
2
 
3
- on:
4
- push:
5
- tags: [ 'v*' ]
3
+ on: push
6
4
 
7
5
  jobs:
8
6
  publish:
9
7
  runs-on: ubuntu-latest
10
8
  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 }}
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-node@v3
11
+ with:
12
+ node-version: '16.x'
13
+ registry-url: 'https://registry.npmjs.org' # <-- the registry-url here is required
14
+ - run: npm publish
15
+ env:
16
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanpurkhiser/eslint-config",
3
- "version": "0.13.0",
3
+ "version": "0.14.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,10 @@
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"
31
29
  }
32
30
  }