mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
* chore: backport-candidate GitHub label * chore: sort label script --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import { createTsupConfig } from '../../tsup.config.js';
|
|
|
|
export default [
|
|
createTsupConfig({
|
|
entry: ['src/index.ts', 'bin/generateSplitDocumentation.ts'],
|
|
minify: 'terser',
|
|
}),
|
|
createTsupConfig({
|
|
entry: ['src/populateDevDatabaseBranch.ts', 'bin/sortLabels.ts'],
|
|
format: 'esm',
|
|
minify: 'terser',
|
|
}),
|
|
];
|