Skip to content

Commit

Permalink
merge: Merge pull request #24 from henryhale/chore/update-deps
Browse files Browse the repository at this point in the history
build: update deps
  • Loading branch information
henryhale committed Oct 7, 2023
2 parents f4ce706 + 094eb4d commit b400af1
Show file tree
Hide file tree
Showing 7 changed files with 1,168 additions and 1,024 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
node-version: 16
node-version: 18

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8
run_install: false

- name: Get pnpm store directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# Checkout project repository
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup git profile
- name: git config
Expand Down
4 changes: 3 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

pnpm lint:fix
echo "Running lint-staged..."

pnpm exec lint-staged
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tabWidth": 4,
"semi": true,
"singleQoute": true,
"singleQuote": false,
"trailingComma": "none"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ To get started with development, follow these steps:

### Prerequisites

- [Node.js](https://nodejs.org) (>=14)
- [pnpm](https://pnpm.io/) (>=7)
- [Node.js](https://nodejs.org) (>=18)
- [pnpm](https://pnpm.io/) (>=8)

### Setup

Expand Down
41 changes: 23 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,35 +50,40 @@
"release": "release-it"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@release-it/conventional-changelog": "^7.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-replace": "^5.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"del-cli": "^5.0.0",
"eslint": "^8.47.0",
"del-cli": "^5.1.0",
"eslint": "^8.50.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"postcss": "^8.4.28",
"lint-staged": "^14.0.1",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.2",
"release-it": "^16.1.5",
"rollup": "^3.28.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"rollup": "^3.29.4",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitepress": "1.0.0-rc.4"
},
"browserslist": [
"last 4 versions",
">1%"
],
"engines": {
"node": ">=14"
"node": ">=18",
"pnpm": ">=8"
},
"lint-staged": {
"*.ts": "pnpm lint:fix"
}
}
Loading

0 comments on commit b400af1

Please sign in to comment.