Skip to content

Commit

Permalink
refactor: use pnpm; upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fearandesire committed Oct 1, 2024
1 parent bc98a9a commit 3f1e080
Show file tree
Hide file tree
Showing 3 changed files with 6,942 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname -- "$0")/_/husky.sh"

yarn test
pnpm test
50 changes: 22 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"files": ["dist"],
"scripts": {
"build": "pkgroll",
"test": "jest",
Expand Down Expand Up @@ -49,44 +47,39 @@
"fuse.js": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.11",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "1.9.3",
"@tsconfig/node19": "^19.1.4",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"babel-jest": "^29.6.4",
"babel-jest": "^29.7.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"pkgroll": "^2.1.1",
"prettier": "^3.2.5",
"release-it": "^17.3.0",
"lint-staged": "^15.2.10",
"pkgroll": "^2.5.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"release-it-changelogen": "^0.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.4.5"
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"collectCoverageFrom": ["**/*.(t|j)s"],
"globals": {
"'ts-jest'": {
"useESM": true
Expand All @@ -97,5 +90,6 @@
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 3f1e080

Please sign in to comment.