feat: Convert package scripts to work with JS

This commit is contained in:
Faruk AYDIN
2024-01-07 19:33:59 +01:00
parent ccf5928262
commit f0d2f07193
16 changed files with 25 additions and 25 deletions

View File

@@ -13,9 +13,9 @@
"pretest": "APP_ENV=test ts-node ./test/setup/prepare-test-env.ts",
"test": "APP_ENV=test jest --verbose",
"lint": "eslint . --ignore-path ../../.eslintignore",
"db:create": "ts-node ./bin/database/create.ts",
"db:seed:user": "ts-node ./bin/database/seed-user.ts",
"db:drop": "ts-node ./bin/database/drop.ts",
"db:create": "ts-node ./bin/database/create.js",
"db:seed:user": "ts-node ./bin/database/seed-user.js",
"db:drop": "ts-node ./bin/database/drop.js",
"db:migration:create": "knex migrate:make",
"db:rollback": "knex migrate:rollback",
"db:migrate": "knex migrate:latest",