Refactoring

This commit is contained in:
2025-01-18 09:26:00 -06:00
parent be1dc6eb4b
commit 7b2177c14a
9 changed files with 15311 additions and 26548 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -20,20 +20,23 @@ jobs:
sparse-checkout: |
api
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ vars.PNPM_VERSION }}
- name: 'Setup Node'
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install
working-directory: api
- name: Install dependencies
run: |
npm install
pnpm install --prod --frozen-lockfile
- name: Build
working-directory: api
run: |
npm run build
pnpm --filter api build
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

View File

@@ -19,20 +19,24 @@ jobs:
sparse-checkout: |
app
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ vars.PNPM_VERSION }}
- name: 'Setup Node'
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install
working-directory: app
run: |
npm install
pnpm install --prod --frozen-lockfile
- name: Build
working-directory: app
run: |
npm run build
pnpm run build
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

9146
api/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
{
"name": "@noahspan/flying-api",
"name": "api",
"version": "0.0.9",
"description": "",
"author": "",
@@ -53,7 +53,6 @@
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"

View File

@@ -1,5 +1,5 @@
{
"name": "@noahspan/flying-app",
"name": "app",
"private": true,
"version": "0.0.5",
"type": "module",

17391
package-lock.json generated

File diff suppressed because it is too large Load Diff

15291
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

3
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,3 @@
packages:
- 'api'
- 'app'