Skip to content

Commit

Permalink
fix(prisma): resolving '*.Yml' files
Browse files Browse the repository at this point in the history
  • Loading branch information
FindMalek committed Sep 9, 2024
1 parent 9faca67 commit a28dec1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/wild-needles-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@undrstnd/ai-engine": patch
---

Removed prisma old client generation
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ jobs:
fi
- run: pnpm install --frozen-lockfile
- run: pnpm run generate
- run: pnpm run lint && pnpm run build && pnpm run test
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
cache: "pnpm"

- run: pnpm install --frozen-lockfile
- run: pnpm run generate
- run: pnpm run lint && pnpm run build && pnpm run test

- name: Create Release Pull Request or Publish to NPM
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "pnpm generate && tsup src/index.ts --format cjs,esm --dts",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"dev": "vitest",
"test": "vitest run",
"ci": "pnpm generate && pnpm run lint && pnpm run test && pnpm run build",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run ci && changeset publish",
"generate": "prisma generate && prisma db push",
"fix": "prettier . --write"
},
"repository": {
Expand Down

0 comments on commit a28dec1

Please sign in to comment.