@hs-web-team/eslint-config-node 0.2.1 → 0.2.3

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.
@@ -10,9 +10,9 @@ jobs:
10
10
  - uses: actions/checkout@v3
11
11
  - uses: actions/setup-node@v3
12
12
  with:
13
- node-version: 16
13
+ node-version: 18
14
+ registry-url: 'https://registry.npmjs.org'
14
15
  - run: npm install
15
- - uses: JS-DevTools/npm-publish@v1
16
- with:
17
- token: ${{ secrets.NPM_TOKEN }}
18
- access: public
16
+ - run: npm publish
17
+ env:
18
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md CHANGED
@@ -14,7 +14,7 @@ This is a list of ESLint rules that are recommended for use with **Hubspot Marke
14
14
 
15
15
  1. Install as dev dependency
16
16
 
17
- ```
17
+ ```shell
18
18
  npm i -D @hs-web-team/eslint-config-node
19
19
  ```
20
20
 
package/index.js CHANGED
@@ -7,7 +7,6 @@ module.exports = {
7
7
  ignorePatterns: [
8
8
  '/node_modules/',
9
9
  '/.serverless/',
10
-
11
10
  '/.eslintrc.js',
12
11
  '/.webpack/',
13
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hs-web-team/eslint-config-node",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "HubSpot Marketing WebTeam ESLint rules for Node.js",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "homepage": "https://github.com/HubSpotWebTeam/wt-eslint-node#readme",
23
23
  "dependencies": {
24
- "eslint": "^8.17.0",
24
+ "eslint": "^8.34.0",
25
25
  "eslint-config-airbnb-base": "^15.0.0",
26
- "eslint-plugin-import": "^2.26.0"
26
+ "eslint-plugin-import": "^2.27.5"
27
27
  }
28
28
  }