Skip to content

Commit

Permalink
Merge pull request #154 from drizzle-team/fix-version-require-path
Browse files Browse the repository at this point in the history
Fix version require path
  • Loading branch information
dankochetov authored Jan 30, 2023
2 parents 973e4d2 + 9fcc77b commit ed722e7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelogs/drizzle-orm/0.17.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed package.json require path in 'drizzle-orm/version'
2 changes: 1 addition & 1 deletion drizzle-orm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drizzle-orm",
"version": "0.17.1",
"version": "0.17.2",
"description": "Drizzle ORM package for SQL databases",
"scripts": {
"build": "tsc && resolve-tspaths && cp ../README.md package.json dist/",
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const compatibilityVersion = 2;
export const npmVersion: string = require('../package.json').version;
export const npmVersion: string = require('./package.json').version;
2 changes: 1 addition & 1 deletion integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"scripts": {
"typecheck": "tsc",
"test": "ava tests --timeout=30s --serial"
"test": "ava tests --timeout=60s --serial"
},
"ava": {
"files": [
Expand Down

0 comments on commit ed722e7

Please sign in to comment.