Skip to content

Commit

Permalink
⬆️ Bump deps re dependabot (#50)
Browse files Browse the repository at this point in the history
* chore: upgrade deps

* chore: change labels for dependabot prs

* chore: update ci node version

* chore: update changelog
  • Loading branch information
nefrob authored Oct 14, 2024
1 parent 78d203f commit 653bc3c
Show file tree
Hide file tree
Showing 8 changed files with 175 additions and 96 deletions.
9 changes: 3 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,18 @@ updates:
schedule:
interval: 'monthly'
labels:
- 'npm dependencies'
- 'dependabot'
- 'dependencies'

- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
labels:
- 'github-actions'
- 'dependabot'
- 'dependencies'

- package-ecosystem: 'docker'
directory: '/'
schedule:
interval: 'monthly'
labels:
- 'docker'
- 'dependabot'
- 'dependencies'
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
node-version: '22'
cache: 'yarn'

- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

- Recipes can now be spawned in a terminal instead of being logged to the extension output channel
- Log level can now be set in the extension settings
- Upgrade node from 21 to 22, along with other dependencies

## [0.6.0] - 2024-10-06

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This page lists the steps needed to set up a development environment and contrib

1. Fork and clone this repo.

2. Setup `nodejs` version `20`. We recommend using [asdf](https://asdf-vm.com/guide/getting-started.html).
2. Setup `nodejs` version `22`. We recommend using [asdf](https://asdf-vm.com/guide/getting-started.html).

3. Install `yarn`, ex. via `brew install yarn`.

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21-alpine
FROM node:22-alpine

ENV YARN_CACHE_FOLDER=/root/.yarn

Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3'

services:
dev:
build:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"license": "MIT",
"version": "0.6.0",
"engines": {
"node": ">=21.1.0 || ^20.9.0 || ^18.18.0",
"node": ">=22 || ^20.9.0",
"vscode": ">=1.91.0"
},
"scripts": {
Expand Down Expand Up @@ -106,20 +106,20 @@
]
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.10",
"@types/vscode": "^1.91.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@types/vscode": "^1.94.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.22.0",
"eslint": "^9.6.0",
"@vscode/vsce": "^3.1.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.0",
"js-yaml": "^4.1.0",
"prettier": "^3.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"typescript": "~5.5.0",
"typescript-eslint": "^7.16.0",
"vscode-tmgrammar-test": "^0.1.3",
"webpack": "^5.93.0",
Expand Down
Loading

0 comments on commit 653bc3c

Please sign in to comment.