Skip to content

Commit c69dbfc

Browse files
committed
update tsdown
1 parent 2fa7d83 commit c69dbfc

File tree

5 files changed

+43
-37
lines changed

5 files changed

+43
-37
lines changed

apps/test-bot/src/app/commands/(general)/ping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const generateMetadata: CommandMetadataFunction = async () => {
5252
return {
5353
userPermissions: 'Administrator',
5454
botPermissions: ['KickMembers', 'BanMembers'],
55-
guilds: ['1234567890', '1234567891'],
55+
// guilds: ['1234567890', '1234567891'],
5656
aliases: ['p', 'pong'],
5757
};
5858
};

apps/test-bot/src/app/commands/(leveling)/xp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ChatInputCommandContext, CommandData } from 'commandkit';
2-
import { database } from '@/database/store.ts';
2+
import { database } from '@/database/store';
33
import { cacheTag } from '@commandkit/cache';
44
import { AiCommand, AiConfig } from '@commandkit/ai';
55
import { z } from 'zod';

packages/commandkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"picocolors": "^1.1.1",
175175
"rfdc": "^1.3.1",
176176
"rimraf": "^6.0.0",
177-
"tsdown": "^0.14.0",
177+
"tsdown": "^0.14.2",
178178
"use-macro": "^1.1.0"
179179
},
180180
"devDependencies": {

packages/commandkit/src/cli/build.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
import { build, Options } from 'tsdown';
2-
import { CompilerPlugin, CompilerPluginRuntime } from '../plugins';
3-
import { loadConfigFile } from '../config/loader';
1+
import { existsSync } from 'node:fs';
42
import { writeFile } from 'node:fs/promises';
53
import { join } from 'node:path';
6-
import { DevEnv, devEnvFileArgs, ProdEnv, prodEnvFileArgs } from './env';
74
import { rimraf } from 'rimraf';
8-
import { performTypeCheck } from './type-checker';
9-
import { copyLocaleFiles } from './common';
5+
import { build, Options } from 'tsdown';
6+
107
import { MaybeArray } from '../components';
11-
import { COMMANDKIT_CWD } from '../utils/constants';
8+
import { loadConfigFile } from '../config/loader';
129
import { mergeDeep } from '../config/utils';
13-
import { existsSync } from 'node:fs';
10+
import { CompilerPlugin, CompilerPluginRuntime } from '../plugins';
11+
import { COMMANDKIT_CWD } from '../utils/constants';
12+
import { copyLocaleFiles } from './common';
13+
import { devEnvFileArgs, prodEnvFileArgs } from './env';
14+
import { performTypeCheck } from './type-checker';
1415

1516
/**
1617
* @private

pnpm-lock.yaml

Lines changed: 31 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)