Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Mar 20, 2024
1 parent 0379896 commit 13400c8
Show file tree
Hide file tree
Showing 13 changed files with 2,296 additions and 1,427 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ on:
push:
pull_request:
env:
NODE_VERSION: "18"
NODE_VERSION: "20.11.0"
PNPM_VERSION: "7"
ETHERPAD_DOMAIN: '${{ secrets.ETHERPAD_DOMAIN }}'
ETHERPAD_DOMAIN: "${{ secrets.ETHERPAD_DOMAIN }}"
jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Install
run: pnpm install
- name: Check types
run: pnpm run check:ts
run: pnpm run checkTs
lint:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -119,4 +119,3 @@ jobs:
run: pnpm install
- name: Check formatting
run: pnpm prettier --check .

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.16.0
20.11.0
70 changes: 34 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test:snapshot:update": "vitest --config ./vitest.snapshot.config.ts --update",
"cache:clear": "rm -rf .cache && rm -rf node_modules/.astro",
"check": "astro check",
"check:ts": "tsc --noEmit",
"checkTs": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
Expand All @@ -27,50 +27,48 @@
"dependencies": {
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.1",
"@fontsource-variable/lora": "^5.0.9",
"@fontsource-variable/lora": "^5.0.17",
"@fontsource/source-sans-pro": "^5.0.8",
"astro": "^4.4.15",
"dotenv": "^16.3.1",
"astro": "^4.5.6",
"dotenv": "^16.4.5",
"feather-icons": "^4.29.1",
"findup-sync": "^5.0.0",
"happy-dom": "^12.0.1",
"happy-dom": "^14.0.0",
"levenshtein": "^1.0.5",
"marked": "^9.0.2",
"marked-smartypants": "^1.1.3",
"marked": "^12.0.1",
"marked-smartypants": "^1.1.6",
"memize": "^2.1.0",
"node-fetch-cache": "^3.1.3",
"p-limit": "^4.0.0",
"sanitize-html": "^2.11.0",
"sharp": "^0.32.5",
"node-fetch-cache": "^4.1.0",
"p-limit": "^5.0.0",
"sanitize-html": "^2.12.1",
"sharp": "^0.33.2",
"striptags": "^3.2.0",
"tsx": "^3.13.0",
"zod": "^3.22.2"
"tsx": "^4.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@anatine/zod-mock": "^3.13.2",
"@faker-js/faker": "^8.0.2",
"@types/diffable-html": "^5.0.1",
"@types/feather-icons": "^4.29.2",
"@types/findup-sync": "^4.0.2",
"@types/levenshtein": "^1.0.2",
"@types/marked": "^5.0.1",
"@types/node-fetch-cache": "^3.0.0",
"@types/pixelmatch": "^5.2.5",
"@types/pngjs": "^6.0.3",
"@types/sanitize-html": "^2.9.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/ui": "^0.34.6",
"concurrently": "^8.2.1",
"csv-parse": "^5.5.0",
"@anatine/zod-mock": "^3.13.3",
"@faker-js/faker": "^8.4.1",
"@types/diffable-html": "^5.0.2",
"@types/feather-icons": "^4.29.4",
"@types/findup-sync": "^4.0.4",
"@types/levenshtein": "^1.0.4",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.4",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/ui": "^1.4.0",
"concurrently": "^8.2.2",
"csv-parse": "^5.5.5",
"diffable-html": "^5.0.0",
"eslint": "^8.49.0",
"eslint": "^8.57.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"prettier": "3.0.3",
"puppeteer": "^21.3.8",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.6"
"prettier": "3.2.5",
"puppeteer": "^22.5.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
}
}
}
Loading

0 comments on commit 13400c8

Please sign in to comment.