Skip to content

Commit

Permalink
chore: routine dependencies update (#124)
Browse files Browse the repository at this point in the history
* chore: routine dependencies update

* fix: switch order of directives
  • Loading branch information
ravijayaramappa committed Jul 5, 2023
1 parent dfa6682 commit efe6ca4
Show file tree
Hide file tree
Showing 3 changed files with 307 additions and 209 deletions.
15 changes: 7 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ version: 2.1

supported-eslint-versions: &supported-eslint-versions ["local", "7"]

executors:
node:
working_directory: ~/eslint-plugin-lwc
docker:
- image: cimg/node:16.17.0

deploy_filters: &deploy_filters
filters:
branches:
Expand All @@ -16,6 +10,12 @@ deploy_filters: &deploy_filters
# Trigger on tags that begin with `v`
only: /^v.*/

executors:
node:
working_directory: ~/eslint-plugin-lwc
docker:
- image: cimg/node:16.17.0

commands:
save_yarn_cache:
description: Save Yarn cache for future build
Expand All @@ -35,15 +35,14 @@ commands:

jobs:
build:
executor: node
parameters:
eslint-version:
type: string
description: >
Overrides the installed version of ESLint. When set to "local" the version of ESLint set
frozen in the yarn.lock is used.
default: "local"
docker:
- image: circleci/node
steps:
- checkout
- restore_yarn_cache
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"release:publish": "npm publish --registry=https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.34.0",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"semver": "^7.3.8"
"prettier": "^2.8.8",
"semver": "^7.5.3"
},
"dependencies": {
"globals": "^13.20.0",
"minimatch": "^6.2.0"
"minimatch": "^9.0.2"
},
"peerDependencies": {
"@babel/eslint-parser": "^7",
Expand Down
Loading

0 comments on commit efe6ca4

Please sign in to comment.