Skip to content

Commit

Permalink
chore: update ESLint dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Aug 22, 2021
1 parent 807385d commit 7b0d6a0
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 45 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/CI.yml
Expand Up @@ -11,39 +11,39 @@ jobs:
name: Keep Latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with: { fetch-depth: 1 }
- name: Install Node.js
uses: actions/setup-node@v1
with: { node-version: 12.x }
- name: Install Packages
run: npm install
- name: Check ESLint Version
uses: ./.github/actions/get-eslint-versions
id: versions
- name: Test
run: npm test
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
- name: Bump Version
run: |
if ! git diff --exit-code --quiet
then
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "🔖 ${VERSION}"
git tag "v$VERSION"
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" HEAD:master "v${VERSION}"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.versions.outputs.installed }}
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install Packages
run: npm install
- name: Check ESLint Version
uses: ./.github/actions/get-eslint-versions
id: versions
- name: Test
run: npm test
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
- name: Bump Version
run: |
if ! git diff --exit-code --quiet
then
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "🔖 ${VERSION}"
git tag "v$VERSION"
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" HEAD:master "v${VERSION}"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.versions.outputs.installed }}
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: success() && steps.versions.outputs.installed != steps.versions.outputs.published
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -3,7 +3,7 @@
"version": "7.32.0",
"description": "ESLint which works in browsers.",
"engines": {
"node": "^10.12.0 || >=12.0.0"
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"main": "dist/index.js",
"files": [
Expand All @@ -13,10 +13,10 @@
"debug": "^4.3.2",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"eslint-scope": "^5.1.1",
"eslint-utils": "^2.1.0",
"eslint-visitor-keys": "^2.1.0",
"espree": "^7.3.1",
"eslint-scope": "^6.0.0",
"eslint-utils": "^3.0.0",
"eslint-visitor-keys": "^3.0.0",
"espree": "^8.0.0",
"esquery": "^1.4.0",
"esutils": "^2.0.3",
"functional-red-black-tree": "^1.0.1",
Expand All @@ -30,12 +30,12 @@
"devDependencies": {
"@actions/core": "^1.5.0",
"@babel/core": "^7.15.0",
"@mysticatea/eslint-plugin": "^11.0.0",
"@mysticatea/eslint-plugin": "^13.0.0",
"@types/node": "^12.20.20",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^7.32.0",
"eslint": "^8.0.0-beta.0",
"fancy-log": "^1.3.3",
"fs-extra": "^9.1.0",
"karma": "^5.2.3",
Expand Down
2 changes: 1 addition & 1 deletion scripts/shim/index.js
@@ -1,4 +1,4 @@
import { Linter as BaseLinter } from "eslint/lib/linter"
import { Linter as BaseLinter } from "eslint"
import coreRules from "./core-rules"

/**
Expand Down
2 changes: 1 addition & 1 deletion scripts/shim/linter.js
@@ -1,2 +1,2 @@
import { Linter } from "eslint/lib/linter"
import { Linter } from "eslint"
export default Linter

0 comments on commit 7b0d6a0

Please sign in to comment.