Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
prisma-version: [4.7.0, 4.8.0]
node-version: [16, 18]
node-version: [18]

name: Node ${{ matrix.node-version }} with Prisma ${{ matrix.prisma-version }}
steps:
Expand Down Expand Up @@ -45,4 +45,3 @@ jobs:

- name: 🧪 Run tests
run: yarn test

9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ yarn*.log
dist
tsconfig.tsbuildinfo
TEST-*

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
19 changes: 19 additions & 0 deletions examples/inputs-simple-sqlite/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
node_modules
coverage
__snapshots__
generated/*
dmmf.json
log.txt
yarn*.log
dist
tsconfig.tsbuildinfo
TEST-*

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
893 changes: 893 additions & 0 deletions examples/inputs-simple-sqlite/.yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions examples/inputs-simple-sqlite/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-4.0.2.cjs
3 changes: 2 additions & 1 deletion examples/inputs-simple-sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
},
"packageManager": "[email protected]"
}
Loading