From c87582c030465e158cccabf65482d7e41910f32e Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Fri, 4 Aug 2023 19:16:56 -0700 Subject: [PATCH] pre prod --- client/package.json | 3 +++ server/package.json | 6 ++---- server/tsconfig.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/client/package.json b/client/package.json index aaa7385..7113166 100644 --- a/client/package.json +++ b/client/package.json @@ -2,6 +2,9 @@ "name": "@chatbridge/client", "version": "0.1.0", "private": true, + "repository": "https://git.jon-e.net/jonny/chatbridge", + "author": "sneakers-the-rat ", + "license": "AGPL-3.0", "dependencies": { "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", diff --git a/server/package.json b/server/package.json index 5cb3bd0..1df9883 100644 --- a/server/package.json +++ b/server/package.json @@ -3,16 +3,14 @@ "version": "1.0.0", "description": "bridging a bunch of chats together", "main": "index.js", - "repository": "https://git.jon-e.net/jonny/ucla-chat", - "author": "sneakers-the-rat ", + "repository": "https://git.jon-e.net/jonny/chatbridge", + "author": "sneakers-the-rat ", "license": "AGPL-3.0", "private": true, "scripts": { "start": "NODE_ENV=development ts-node-dev --respawn --transpile-only --exit-child src/app.ts", "build": "../node_modules/.bin/tsc -p .", "typeorm": "../node_modules/.bin/typeorm-ts-node-commonjs", - "migrate": "rm -rf build && yarn build && yarn ../node_modules/.bin/typeorm migration:generate ./src/migrations/added-user-entity -d ./src/utils/data-source.ts", - "db:push": "rm -rf build && yarn build && yarn ../node_modules/.bin/typeorm migration:run -d src/utils/data-source.ts", "importData": "npx ts-node-dev --transpile-only --exit-child src/data/seeder.ts", "test": "jest" }, diff --git a/server/tsconfig.json b/server/tsconfig.json index 9faec76..99a1c09 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -10,7 +10,7 @@ "strictPropertyInitialization": false, "strictNullChecks": false, "skipLibCheck": true, - "outDir": "./build", + "outDir": "./dist", "rootDir": ".", },