add uuid to dependencies

This commit is contained in:
Aleksander Wilczyński 2024-06-23 23:07:36 +02:00
parent aa2be313f6
commit 1a7f49a784
Signed by: alekswilc
GPG Key ID: D4464A248E5F27FE
2 changed files with 2 additions and 3 deletions

View File

@ -26,7 +26,7 @@ const _ = async () => {
platform: "node",
outExtension: { '.js': '.cjs', },
bundle: true,
external: ['@permafrost-dev/pretty-format', 'p-queue', 'stacktrace-js']
external: ['@permafrost-dev/pretty-format', 'uuid', 'stacktrace-js']
});
esbuild.build({
@ -52,7 +52,7 @@ const _ = async () => {
platform: "node",
outExtension: { '.js': '.mjs', },
bundle: true,
external: ['@permafrost-dev/pretty-format', 'p-queue', 'stacktrace-js']
external: ['@permafrost-dev/pretty-format', 'uuid', 'stacktrace-js']
});
esbuild.build({

View File

@ -44,7 +44,6 @@ export class Payload {
Payload.create({ type: 'test', content: {} });
export interface IRequest {
// uuid, payloads, meta: { my_package_version: "1.0.0" }
uuid: string;
payloads: IPayload[]
meta: Record<string, string>