Skip to content

Commit 57dea7a

Browse files
committed
ci: automatic short name for firefix
1 parent 8e2eea1 commit 57dea7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wxt.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { defineConfig } from 'wxt';
44
export default defineConfig({
55
extensionApi: 'chrome',
66
modules: ['@wxt-dev/module-react'],
7-
manifest: {
8-
name: 'Git Ingest - Turn any Git repo to a LLM-friendly prompt',
7+
manifest: (env: ConfigEnv) => ({
8+
name: (env.browser === 'firefox') ? 'Git Ingest - Turn any Git repo to LLM prompt' : 'Git Ingest - Turn any Git repo to a LLM-friendly prompt',
99
description: 'Turn any Git repository into a prompt-friendly text ingest for LLMs. By replacing hub with ingest to access a coresponding digest.',
1010
permissions: ['storage'],
11-
}
11+
})
1212
});

0 commit comments

Comments
 (0)