build: fix the messy dependency graph

This commit is contained in:
iCrawl
2023-11-09 00:13:01 +01:00
parent e5f3f3130e
commit aad82f088b
105 changed files with 655 additions and 438 deletions

View File

@@ -1,5 +1,7 @@
import { Buffer } from 'node:buffer';
export const RTP_PACKET_DESKTOP = {
ssrc: 341124,
ssrc: 341_124,
packet: Buffer.from([
0x90, 0x78, 0x27, 0xe9, 0xf7, 0xcb, 0xbc, 0xd1, 0x0, 0x5, 0x34, 0x84, 0x8a, 0xbb, 0xe2, 0x97, 0x21, 0x9f, 0x1f,
0x67, 0xcd, 0x17, 0x91, 0x56, 0x43, 0xa0, 0x98, 0xfd, 0xa9, 0x25, 0x81, 0x63, 0x13, 0xb4, 0x1e, 0xae, 0x88, 0xe4,
@@ -10,7 +12,7 @@ export const RTP_PACKET_DESKTOP = {
};
export const RTP_PACKET_CHROME = {
ssrc: 172360,
ssrc: 172_360,
packet: Buffer.from([
0x80, 0x78, 0x46, 0xdf, 0x27, 0x59, 0x2a, 0xd7, 0x0, 0x2, 0xa1, 0x48, 0x42, 0x9e, 0x53, 0xec, 0x73, 0xc1, 0x71,
0x22, 0x71, 0x60, 0x90, 0xff, 0x1b, 0x20, 0x47, 0x2c, 0xdc, 0x86, 0xc4, 0x9a, 0x0, 0x0, 0x0,
@@ -20,7 +22,7 @@ export const RTP_PACKET_CHROME = {
};
export const RTP_PACKET_ANDROID = {
ssrc: 172596,
ssrc: 172_596,
packet: Buffer.from([
0x90, 0x78, 0x39, 0xd0, 0xe0, 0x59, 0xf5, 0x47, 0x0, 0x2, 0xa2, 0x34, 0x12, 0x6d, 0x87, 0x56, 0x25, 0xc8, 0x3e,
0x96, 0xc0, 0x71, 0x9a, 0x1, 0x83, 0xe, 0x1, 0x62, 0x91, 0x95, 0x1f, 0x76, 0x57, 0x15, 0x41, 0xab, 0xee, 0x5b, 0xac,

View File

@@ -1,5 +1,6 @@
/* eslint-disable @typescript-eslint/unbound-method */
/* eslint-disable @typescript-eslint/dot-notation */
// @ts-nocheck
import { Buffer } from 'node:buffer';
import { once } from 'node:events';
import process from 'node:process';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import { findPipeline, StreamType, TransformerType, type Edge } from '../src/audio/TransformerGraph';
const noConstraint = () => true;

View File

@@ -1,5 +1,6 @@
/* eslint-disable @typescript-eslint/unbound-method */
/* eslint-disable @typescript-eslint/dot-notation */
// @ts-nocheck
import { EventEmitter } from 'node:events';
import * as _DataStore from '../src/DataStore';
import {

View File

@@ -1,5 +1,6 @@
/* eslint-disable id-length */
/* eslint-disable @typescript-eslint/dot-notation */
// @ts-nocheck
import { Buffer } from 'node:buffer';
import { once } from 'node:events';
import process from 'node:process';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import { Buffer } from 'node:buffer';
import { createSocket as _createSocket } from 'node:dgram';
import { EventEmitter } from 'node:events';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import { Buffer } from 'node:buffer';
import EventEmitter, { once } from 'node:events';
import process from 'node:process';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import * as VoiceConnection from '../src/VoiceConnection';
import { joinVoiceChannel } from '../src/joinVoiceChannel';

View File

@@ -86,7 +86,7 @@
"mock-socket": "^9.3.1",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"turbo": "^1.10.16",
"turbo": "^1.10.17-canary.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.2.2"
},

View File

@@ -1,6 +1,6 @@
import { readFile, writeFile } from 'node:fs/promises';
const data = await readFile('./dist/index.mjs', 'utf-8');
const data = await readFile('./dist/index.mjs', 'utf8');
await writeFile(
'./dist/index.mjs',
`import{createRequire as topLevelCreateRequire}from"module";const require=topLevelCreateRequire(import.meta.url);${data}`,

View File

@@ -4,5 +4,6 @@
"compilerOptions": {
"outDir": "dist-docs"
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}

View File

@@ -4,5 +4,19 @@
"compilerOptions": {
"allowJs": true
},
"include": ["*.ts", "*.tsx", "*.js", "*.cjs", "*.mjs", "src", "scripts", "__tests__", "__mocks__"]
"include": [
"*.ts",
"*.js",
"*.cjs",
"*.mjs",
"src/**/*.ts",
"src/**/*.js",
"src/**/*.cjs",
"src/**/*.mjs",
"bin",
"scripts",
"__tests__",
"__mocks__"
],
"exclude": ["node_modules"]
}

View File

@@ -1,5 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.cjs", "src/**/*.mjs", "bin"],
"exclude": ["node_modules"]
}