mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
* Move transformers types to a single file * Add script to test TS Compiler api capabilities Remove nested objects where possible * Use Partial<Role> and DiscordOverwrite instead of objects in AuditLogChange * Fix typescript errors * Remove interfaces.json It is a generated file from the test script, not something that should be commited * Start work on the test generation script The TS version got bumped to 5.5.3 * Fix any type, use node16 module resolution "node" is a deprecated alias for "node10", node16 is the recommended Add code to check for type errors when getting the types from the interfaces Fix errors when TS tries to find the files that the root tsconfig.json handles * remove some useless compile options in TSApiTest * Add jsdoc parsing JSDoc tags with the next right after are not supported * fix small format issue * Fix ApplicationCommandPermissions todo * Fix CI error * Simplify parseDocumentation * get type directly from the sourceFile * remove hasUndefinedUnion as it is no longer used * fix discordeno bin file name * Update the yarn lockfile * Merge scripts into one * Use `@internal` instead of `@private` + `@deprecated` * work on .d.ts files * Process interface members once * Move emit/preEmit diagnostics to a unit test they can take quite a while, even 3-4 seconds, so running in the CLI every time does not seem ideal * test: add build:types to test:unit dependencies This is a test commit, it will provably get reversed. The scope is to see what CI does with this * add find-up to deno import map * add typescript to the deno import map * Add node:assert to deno import map * check for this.timeout that exists deno does not have the timeout * add build:type to deno-unit * Temp hack to work-around the script deno tests * Test with bun running the test as well * fix turbo deps for unit tests * remove test scripts * Update CI to use build:type cache * Apply code review suggestion Co-authored-by: LTS20050703 <lts20050703@gmail.com> * Add code to modify the interface member * use an actual config The config source is still a dummy object for now * Search and use discordeno.config.js file * provide config from cli options * Handle props in base objects The dependencies of an object need to be declared/updated manually, it would be painful to fix this in such a way that would be something that Typescript can give us from the compiler API * add some tests for desired proprieties * also check for a .mjs config file * Add support for .ts config files We use the typescript compiler to emit an in-memory version of the config file, import it and then remove it. It does not do bundling so if the config imports local files it will not work. Also the file is not type-checked as it would slow down the config loading * remove compiler host, use callback on program.emit * fix deno ci error * add node:fs/promises to deno import map --------- Co-authored-by: LTS20050703 <lts20050703@gmail.com>
23 lines
768 B
JavaScript
23 lines
768 B
JavaScript
import fs from 'node:fs'
|
|
|
|
const dirs = ['']
|
|
for await (const dir of dirs) {
|
|
await Promise.all(
|
|
fs.readdirSync(`denoTestsDist${dir}`).map(async (file) => {
|
|
if (!file.endsWith('.js') && !file.endsWith('.map') && !file.endsWith('.ts')) {
|
|
dirs.push(`${dir}/${file}`)
|
|
return
|
|
}
|
|
const content = await fs.promises.readFile(`denoTestsDist${dir}/${file}`, 'utf-8')
|
|
await fs.promises.rm(`denoTestsDist${dir}/${file}`)
|
|
fs.promises.writeFile(
|
|
`denoTestsDist${dir}/${file.slice(-8) === '.spec.js' ? `${file.slice(0, -7)}test.js` : file}`,
|
|
content
|
|
.replace(/src\//g, 'dist/esm/')
|
|
.replace(/describe\.skip/g, 'describe.ignore')
|
|
.replace(/it\.skip/g, 'it.ignore'),
|
|
)
|
|
}),
|
|
)
|
|
}
|