Skip to content

Commit

Permalink
cache-manager - upgrading typescript and types to latest (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwray committed Apr 29, 2024
1 parent 4a6dadb commit b255709
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/cache-manager-ioredis-yet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
],
"scripts": {
"clean": "rimraf dist coverage node_modules yarn.lock pnpm-lock.yaml package-lock.json",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run --coverage",
"test:ci": "vitest run",
"prepare": "npm run build"
"prepare": "pnpm build"
},
"dependencies": {
"cache-manager": "^5.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/cache-manager-redis-yet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"url": "https://github.com/jaredwray/cache-manager.git"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist node_modules yarn.lock package-lock.json pnpm-lock.yaml .eslintcache coverage",
"test": "vitest run --coverage",
"test:ci": "vitest run",
"prepare": "npm run build"
"prepare": "pnpm build"
},
"keywords": [
"cache-manager",
Expand Down
12 changes: 6 additions & 6 deletions packages/cache-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"dist/**/*.d.ts"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"prepare": "npm run build"
"prepare": "pnpm build"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -49,13 +49,13 @@
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-v8": "^1.4.0",
"eslint-config-xo-typescript": "^4.0.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.3",
"typescript": "^5.4.5",
"vitest": "^1.4.0",
"xo": "^0.58.0"
},
Expand Down

0 comments on commit b255709

Please sign in to comment.