Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant package.json copying #502

Merged
merged 1 commit into from
Apr 23, 2023
Merged
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
1 change: 1 addition & 0 deletions changelogs/drizzle-orm/0.25.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 🐛 Fix package.json `exports` field
4 changes: 2 additions & 2 deletions drizzle-orm/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "drizzle-orm",
"version": "0.25.0",
"version": "0.25.1",
"description": "Drizzle ORM package for SQL databases",
"type": "module",
"scripts": {
"build": "scripts/build.ts",
"b": "pnpm build",
"test:types": "cd type-tests && tsc",
"test": "vitest run",
"pack": "cp package.json dist/ && (cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz"
},
"main": "./index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion drizzle-zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin typescript && resolve-tspaths && cp README.md package.json dist/",
"b": "pnpm build",
"test:types": "cd tests && tsc",
"pack": "cp package.json dist/ && (cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "ava tests"
},
Expand Down