Skip to content

Commit 5863a1d

Browse files
spoons-and-mirrorsTarquinen
authored andcommitted
reorder tool registering
1 parent 53e2c15 commit 5863a1d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

‎index.ts‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,26 +61,26 @@ const plugin: Plugin = (async (ctx) => {
6161
ctx.directory,
6262
),
6363
tool: {
64-
...(config.tools.prune.enabled && {
65-
prune: createPruneTool({
64+
...(config.tools.distill.enabled && {
65+
distill: createDistillTool({
6666
client: ctx.client,
6767
state,
6868
logger,
6969
config,
7070
workingDirectory: ctx.directory,
7171
}),
7272
}),
73-
...(config.tools.distill.enabled && {
74-
distill: createDistillTool({
73+
...(config.tools.compress.enabled && {
74+
compress: createCompressTool({
7575
client: ctx.client,
7676
state,
7777
logger,
7878
config,
7979
workingDirectory: ctx.directory,
8080
}),
8181
}),
82-
...(config.tools.compress.enabled && {
83-
compress: createCompressTool({
82+
...(config.tools.prune.enabled && {
83+
prune: createPruneTool({
8484
client: ctx.client,
8585
state,
8686
logger,

0 commit comments

Comments
 (0)