@stamhoofd/backend-renderer 2.107.1 → 2.107.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@ backendEnv.load({ service: 'renderer' }).catch((error) => {
|
|
|
4
4
|
console.error('Failed to load environment:', error);
|
|
5
5
|
process.exit(1);
|
|
6
6
|
}).then(async () => {
|
|
7
|
-
await import('./src/boot');
|
|
7
|
+
await import('./src/boot.js');
|
|
8
8
|
}).catch((error) => {
|
|
9
9
|
console.error('Failed to start the API:', error);
|
|
10
10
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stamhoofd/backend-renderer",
|
|
3
|
-
"version": "2.107.
|
|
3
|
+
"version": "2.107.2",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "33deb06a0bac15cc46fe141bc3dcf1dafb6e82a1"
|
|
38
38
|
}
|
|
@@ -7,7 +7,7 @@ import { firstValues } from 'formidable/src/helpers/firstValues.js';
|
|
|
7
7
|
import { promises as fs } from 'fs';
|
|
8
8
|
import puppeteer, { Browser } from 'puppeteer';
|
|
9
9
|
|
|
10
|
-
import { FileCache } from '../helpers/FileCache';
|
|
10
|
+
import { FileCache } from '../helpers/FileCache.js';
|
|
11
11
|
|
|
12
12
|
type Params = Record<string, never>;
|
|
13
13
|
type Body = undefined;
|
|
@@ -2,7 +2,7 @@ import { AutoEncoder, DateDecoder, Decoder, field, StringDecoder } from '@simonb
|
|
|
2
2
|
import { DecodedRequest, Endpoint, Request, Response } from '@simonbackx/simple-endpoints';
|
|
3
3
|
import { SimpleError } from '@simonbackx/simple-errors';
|
|
4
4
|
|
|
5
|
-
import { FileCache } from '../helpers/FileCache';
|
|
5
|
+
import { FileCache } from '../helpers/FileCache.js';
|
|
6
6
|
|
|
7
7
|
type Params = Record<string, never>;
|
|
8
8
|
class Query extends AutoEncoder {
|