Compare commits

..

No commits in common. "49a8a352dfafc838564209315a7f3678c254f99e" and "d952b973a839c2d1f7b05e24ee0593a567db2692" have entirely different histories.

2 changed files with 0 additions and 14 deletions

View file

@ -67,6 +67,5 @@ stdenv.mkDerivation (finalAttrs: {
description = "The ultimate trout population helper"; description = "The ultimate trout population helper";
license = lib.licenses.eupl12; license = lib.licenses.eupl12;
maintainers = with lib.maintainers; [NotAShelf]; maintainers = with lib.maintainers; [NotAShelf];
mainProgram = "troutbot";
}; };
}) })

View file

@ -1,13 +0,0 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: 'cjs',
dts: true,
clean: true,
// Bundle jiti into the output so it works without node_modules
noExternal: ['jiti'],
// Ensure all dependencies are resolved
platform: 'node',
target: 'node22',
});