diff --git a/script/build-chrome.sh b/script/build-chrome.sh index 2bfc9c51..ff6cb156 100755 --- a/script/build-chrome.sh +++ b/script/build-chrome.sh @@ -22,4 +22,4 @@ yarn build:ext # Zip the distribution folder echo 'Zip the extension' -cd dist/ && zip -r ../chrome_extension.zip * -x "*.DS_Store" && cd .. \ No newline at end of file +cd dist/ && zip -r ../chrome_extension.zip * -x "*.DS_Store" "web_manifest.json" "screenshots/*" "images/*" "favicon.ico" "robots.txt" "base.manifest.json" "chrome.manifest.json" "firefox.manifest.json" && cd .. \ No newline at end of file diff --git a/script/build-firefox.sh b/script/build-firefox.sh index 55b6d43e..f6b06f86 100755 --- a/script/build-firefox.sh +++ b/script/build-firefox.sh @@ -27,7 +27,7 @@ yarn build:ext # Zip the distribution folder echo 'Zip the extension' -cd dist/ && zip -r ../firefox_extension.zip * -x "*.DS_Store" && cd .. +cd dist/ && zip -r ../firefox_extension.zip * -x "*.DS_Store" "web_manifest.json" "screenshots/*" "images/*" "favicon.ico" "robots.txt" "base.manifest.json" "chrome.manifest.json" "firefox.manifest.json" && cd .. # echo 'Zip the source code'