Skip to content

Commit bfdf56d

Browse files
seemingly working again
1 parent b384aa1 commit bfdf56d

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

build-info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== Build Info ===
2-
Commit : 5ec50ac
2+
Commit : b384aa1
33
Branch : master
44
Author : Kevin Cantrell
5-
Date : 2025-06-09T03:01:32.315Z
5+
Date : 2025-06-09T04:00:12.633Z
66
Builder : kevin@kevin-desktop
77
IP Address : 192.168.1.148
88
==================

nest-cli.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"assets": [
88
{
99
"include": "assets/**/*",
10-
"outDir": "dist/assets"
10+
"outDir": "dist"
1111
}
1212
]
1313
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"author": "",
66
"private": true,
77
"license": "UNLICENSED",
8-
"type": "module",
8+
"type": "commonjs",
99
"scripts": {
1010
"prebuild": "node ./scripts/build-info.js",
11-
"build": "nest build && npm run copy-assets",
11+
"build": "nest build",
1212
"vercel-build": "npm run build",
1313
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
1414
"start": "nest start",
1515
"start:dev": "nest start --watch",
1616
"start:debug": "nest start --debug --watch",
1717
"prestart:prod": "node ./scripts/build-info.js",
18-
"start:prod": "node dist/main",
18+
"start:prod": "node dist/src/main",
1919
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
2020
"test": "jest",
2121
"test:watch": "jest --watch",

scripts/build-info.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env node
2-
import { execSync } from 'child_process';
3-
import os from 'os';
4-
import fs from 'fs';
5-
import path from 'path';
2+
const { execSync } = require('child_process');
3+
const os = require('os');
4+
const fs = require('fs');
5+
const path = require('path');
66

77
// helper to run shell commands
88
function run(cmd) {

test-pdf.pdf

69 Bytes
Binary file not shown.

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
3-
"module": "ESNext",
3+
"module": "CommonJS",
4+
"moduleResolution": "node",
45
"declaration": true,
56
"removeComments": true,
67
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)