chore(deno): give deno the v10 exports they desire (#380)

This commit is contained in:
Vlad Frangu
2022-03-26 11:52:28 +02:00
committed by GitHub
parent c9838220ce
commit f173b18312
2 changed files with 7 additions and 0 deletions

6
deno/v10.ts Normal file
View File

@@ -0,0 +1,6 @@
export * from './gateway/v10.ts';
export * from './globals.ts';
export * from './payloads/v10/mod.ts';
export * from './rest/v10/mod.ts';
export * from './rpc/v10.ts';
export * as Utils from './utils/v10.ts';

View File

@@ -106,6 +106,7 @@ const globalFileResults = await Promise.allSettled(
'v6.ts', //
'v8.ts',
'v9.ts',
'v10.ts',
].map((version) => convertFile(new URL(version, baseDirectory), new URL(version, denoPath))),
);