Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Siegrift committed Sep 25, 2023
1 parent e2959a5 commit 044a9d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"build": "tsc --project .",
"clean": "rm -rf coverage dist",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm run start\"",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm ts-node src/index.ts\"",
"docker:build": "docker compose --file docker/docker-compose.yml build",
"docker:start:detach": "docker compose --file docker/docker-compose.yml up --detach",
"docker:start": "docker compose --file docker/docker-compose.yml up",
Expand All @@ -18,8 +18,7 @@
"eslint:fix": "eslint . --ext .js,.ts --fix",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,ts,md,json}\"",
"start": "pnpm ts-node src/index.ts",
"start:prod": "pnpm node dist/src/index.js",
"start-prod": "node dist/src/index.js",
"test": "jest"
},
"license": "MIT",
Expand Down
5 changes: 2 additions & 3 deletions packages/data-pusher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"build": "tsc --project .",
"clean": "rm -rf coverage dist",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm run start\"",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm ts-node src/index.ts\"",
"docker:build": "docker compose --file docker/docker-compose.yml build",
"docker:start:detach": "docker compose --file docker/docker-compose.yml up --detach",
"docker:start": "docker compose --file docker/docker-compose.yml up",
Expand All @@ -17,8 +17,7 @@
"eslint:fix": "eslint . --ext .js,.ts --fix",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,yml,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,ts,md,yml,json}\"",
"start": "pnpm ts-node src/index.ts",
"start:prod": "pnpm node dist/src/index.js",
"start-prod": "node dist/src/index.js",
"test": "jest"
},
"license": "MIT",
Expand Down

0 comments on commit 044a9d7

Please sign in to comment.