Skip to content

Commit

Permalink
[FIXBUG]
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Sep 20, 2023
1 parent 3354739 commit 7f287ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"lint-fix": "eslint --fix **/*.ts",
"format": "prettier --write src/**/*.ts",
"migrate:create": "migrate create --template-file ./src/migrations/utils/template.ts --migrations-dir=\"./src/migrations/db\"",
"migrate:up": "migrate --migrations-dir=\"./dist/migrations/db\" up",
"migrate:down": "migrate --migrations-dir=\"./dist/migrations/db\" down"
"migrate:up": "migrate --migrations-dir=\"./lib/migrations/db\" up",
"migrate:down": "migrate --migrations-dir=\"./lib/migrations/db\" down"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"experimentalDecorators": true,
"target": "ES2017",
"sourceMap": false,
"outDir": "./dist",
"outDir": "./lib",
"baseUrl": "./",
"incremental": true,
"strict": true,
Expand All @@ -26,7 +26,7 @@
},
"exclude": [
"./coverage",
"./dist",
"./lib",
"__tests__",
"jest.config.js"
],
Expand Down

0 comments on commit 7f287ff

Please sign in to comment.