Skip to content

Commit

Permalink
fixed build command
Browse files Browse the repository at this point in the history
  • Loading branch information
mAmineChniti committed Mar 23, 2024
1 parent d5fb383 commit 43563ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "bun run manifest && astro build && cd build-tools && bun run csp && bun bundler.ts",
"build:firefox": "bun run manifest firefox && astro build && cd build-tools && bun run csp && bun bundler.ts firefox",
"build": "bun run manifest && bun run astro build && cd build-tools && bun run csp && bun bundler.ts",
"build:firefox": "bun run manifest firefox && bun run astro build && cd build-tools && bun run csp && bun bundler.ts firefox",
"preview": "astro preview",
"astro": "astro",
"csp": "bun -b extract-inline.ts",
Expand Down
22 changes: 11 additions & 11 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"manifest_version": 3,
"name": "Catonaut",
"version": "0.1.0",
"version": "0.0.1",
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["content.js"],
"css": ["content.css"]
"matches": [
"http://*/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"background": {
Expand All @@ -15,16 +21,10 @@
"action": {
"default_popup": "index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "yourcustom@token.io",
"strict_min_version": "42.0"
}
},
"icons": {
"16": "assets/images/icon16.png",
"32": "assets/images/icon32.png",
"48": "assets/images/icon48.png",
"128": "assets/images/icon128.png"
}
}
}

0 comments on commit 43563ac

Please sign in to comment.