Skip to content

Commit

Permalink
ea
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoobes committed Jul 27, 2024
1 parent 7b99f02 commit 6db6cf5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/types/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@ export interface sernConfig {
base: string;
commands: string;
};
scripts?: {
prepublish?: string;
};
buildPath: string;
rest?: Record<string, Record<string, unknown>>;
}

export interface TheoreticalEnv {
DISCORD_TOKEN: string;
APPLICATION_ID?: string;
MODE: 'PROD' | 'DEV';
MODE: 'production' | 'environment';
[name: string]: string;
}
Empty file removed templates/handler.js
Empty file.
1 change: 1 addition & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineConfig } from 'tsup';
import { createRequire } from 'node:module';

const shared = {
entry: [
'src/index.ts',
Expand Down

0 comments on commit 6db6cf5

Please sign in to comment.