Skip to content

Commit

Permalink
bugfix - migrations weren't running as ts-node wasn't a prod dep
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-phillips committed Apr 17, 2022
1 parent ba9d021 commit 337592f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "BudgE",
"version": "0.0.3",
"version": "0.0.6",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js",
"test": "jest",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run"
"migrate": "npx --yes ts-node ./node_modules/typeorm/cli.js migration:run"
},
"keywords": [],
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "BudgE",
"version": "0.0.3",
"version": "0.0.6",
"private": true,
"dependencies": {
"@dinero.js/currencies": "^2.0.0-alpha.8",
Expand Down

0 comments on commit 337592f

Please sign in to comment.