Skip to content

Commit

Permalink
fix: remove unnecessary useMemos (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredLunde authored Jun 26, 2022
1 parent 7427b74 commit 8ffc30c
Show file tree
Hide file tree
Showing 6 changed files with 2,176 additions and 1,123 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 6.14.3
version: 7.3.0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand All @@ -45,7 +45,7 @@ jobs:
- name: ✅ Check types
run: pnpm check-types
- name: 🧹 Lint
run: pnpm lint -- --quiet
run: pnpm lint --quiet
- name: 🧪 Test
run: pnpm test -- --coverage --silent
- name: Publish tests to Codecov
Expand All @@ -65,4 +65,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpx -y semantic-release
run: pnpm semantic-release
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,34 +43,35 @@
"react": ">=16.8"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@swc-node/core": "^1.6.0",
"@swc-node/jest": "^1.3.2",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/react-hooks": "latest",
"@testing-library/user-event": "latest",
"@swc-node/core": "^1.9.0",
"@swc-node/jest": "^1.5.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.2.1",
"@types/is-relative": "^1.0.0",
"@types/jest": "latest",
"@types/jest": "^28.1.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/use-subscription": "^1.0.0",
"@types/use-sync-external-store": "^0.0.3",
"cz-conventional-changelog": "latest",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-lunde": "latest",
"husky": "latest",
"jest": "^28",
"eslint-config-lunde": "^0.7.1",
"husky": "^8.0.1",
"jest": "^28.0.2",
"jest-environment-jsdom": "^28.0.2",
"lint-staged": "latest",
"lundle": "latest",
"lint-staged": "^13.0.3",
"lundle": "^0.4.13",
"prettier": "latest",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "latest",
"react-test-renderer": "^18.2.0",
"semantic-release": "^19.0.3",
"type-fest": "^2.12.2",
"typescript": "latest"
},
Expand Down Expand Up @@ -159,7 +160,7 @@
},
"lint-staged": {
"package.json": [
"pnpx -y prettier-package-json --write"
"pnpm dlx prettier-package-json --write"
],
"**/*.{ts,tsx,js,jsx}": [
"eslint --ext .ts,.tsx,.js,.jsx --fix",
Expand Down
Loading

0 comments on commit 8ffc30c

Please sign in to comment.