Compare commits
2 commits
d952b973a8
...
49a8a352df
| Author | SHA1 | Date | |
|---|---|---|---|
|
49a8a352df |
|||
|
1fe6bfb380 |
2 changed files with 14 additions and 0 deletions
|
|
@ -67,5 +67,6 @@ 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";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
13
tsup.config.ts
Normal file
13
tsup.config.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
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',
|
||||||
|
});
|
||||||
Loading…
Add table
Add a link
Reference in a new issue