Skip to content

Commit

Permalink
Merge pull request #59 from nrfta/chore/seng-979
Browse files Browse the repository at this point in the history
SENG-979: Dependency updates
  • Loading branch information
josemarluedke authored Jan 17, 2024
2 parents 8287c6e + 960da1f commit 4089dac
Show file tree
Hide file tree
Showing 8 changed files with 5,739 additions and 5,033 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ on: push
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
env:
VOLTA_FEATURE_PNPM: true

name: Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install Yarn
run: npm install -g yarn
- uses: actions/checkout@v4
- uses: volta-cli/action@v4

- name: Install Dependencies
run: yarn install
run: pnpm install

- name: Lint JS
run: yarn lint:js
run: pnpm lint:js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This process is the same for any of the packages included here.
### 1. Install plugin

```shell
yarn add --dev @underline/eslint-config
pnpm add --save-dev @underline/eslint-config
```

### 2. Modify your `.eslintrc.js`:
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"npmClient": "yarn",
"npmClient": "pnpm",
"command": {
"bootstrap": {
"npmClientArgs": [
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint:js": "eslint ."
},
"devDependencies": {
"eslint": "^8.47.0",
"lerna": "^7.1.5",
"typescript": "^5.1.6"
"typescript": "^5.3.3"
},
"volta": {
"node": "20.10.0",
"pnpm": "8.14.0"
}
}
4 changes: 2 additions & 2 deletions packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"access": "public"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@underline/eslint-config": "^0.15.1"
}
}
Loading

0 comments on commit 4089dac

Please sign in to comment.