Skip to content

Commit

Permalink
Fix package
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Dec 17, 2023
1 parent 06bdb3b commit 1310695
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"build": "pnpm build:vite && pnpm build:script && pnpm build:removeExport && pnpm build:removeInline",
"build:prod": "pnpm build:replaceGeckoId -- FF_ID && pnpm build",
"build:prod": "pnpm build:replaceGeckoId $1 && pnpm build",
"build:vite": "vite build",
"build:script": "tsc --p scripts/extension/tsconfig.json",
"build:removeExport": "node scripts/project/removeExportFromScript.cjs",
Expand Down
10 changes: 10 additions & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
type Message = {
action: string;
};

type Response = {
success: boolean;
message?: string;
};

export type { Message, Response };

0 comments on commit 1310695

Please sign in to comment.