diff --git a/browser-extension/table-sort-js.zip b/browser-extension/table-sort-js.zip index 34435dc..bb7c05b 100644 Binary files a/browser-extension/table-sort-js.zip and b/browser-extension/table-sort-js.zip differ diff --git a/deploy.sh b/deploy.sh index b97ce39..5512fef 100755 --- a/deploy.sh +++ b/deploy.sh @@ -3,8 +3,16 @@ cp public/table-sort.js browser-extension/table-sort.js cp README.md npm/README.md cp LICENSE npm/LICENSE cp Contributors.md npm/Contributors.md +cd browser-extension/ +rm ./table-sort-js.zip +echo "zipping browser extension..." +zip -r -FS ./table-sort-js.zip * --exclude '*.git*' +cd .. +echo "running prettier..." npx prettier --write . +echo "deploying..." npm run deploy +echo "running tests..." npm run test echo "Reminder: Update npm package to new version in npm/package.json and npm publish." echo "Reminder: Update firefox browser extension manifest."