Skip to content

Commit

Permalink
Update/deps (#21)
Browse files Browse the repository at this point in the history
* deps/update
* node/v20
  • Loading branch information
Nicolae-Rares Ailincai authored Apr 25, 2023
1 parent cd06fcb commit fd69ac2
Show file tree
Hide file tree
Showing 6 changed files with 277 additions and 215 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 19.0
- name: Use Node.js 20.0
uses: actions/setup-node@v3
with:
node-version: 19.0
node-version: 20.0
cache: 'yarn'
- name: Audit
run: yarn audit --level info
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
node-version: [14.x, 16.x, 18.x, 19.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 19.0
- name: Use Node.js 20.0
uses: actions/setup-node@v3
with:
node-version: 19.0
cache: "yarn"
node-version: 20.0
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Tests
Expand All @@ -30,11 +30,11 @@ jobs:
name: NPM
steps:
- uses: actions/checkout@v3
- name: Use Node.js 19.0
- name: Use Node.js 20.0
uses: actions/setup-node@v3
with:
node-version: 19.0
cache: "yarn"
node-version: 20.0
cache: 'yarn'
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: yarn install --frozen-lockfile
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ A CLI that adds @map and @@map based on a json
| 17.x ||
| 18.x ||
| 19.x ||
| 20.x ||

### Getting Started

Expand Down
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prisma-mapper",
"version": "1.3.3",
"version": "1.3.4",
"description": "A CLI that adds @Map, @@Map, @updatedAt based on a json or camel case for the prisma schema",
"main": "bin/index.js",
"preferGlobal": true,
Expand Down Expand Up @@ -41,30 +41,27 @@
"test": "jest"
},
"dependencies": {
"@prisma/internals": "^4.10.1",
"@prisma/internals": "^4.13.0",
"colors": "^1.4.0",
"commander": "^10.0.0",
"inquirer": "^9.1.4"
},
"resolutions": {
"undici": "^5.19.1",
"json5": "^1.0.2"
"commander": "^10.0.1",
"inquirer": "^9.2.0"
},
"resolutions": {},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.2"
"typescript": "5.0.4"
}
}
Loading

0 comments on commit fd69ac2

Please sign in to comment.