Skip to content

Commit

Permalink
add zip command
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Aug 22, 2024
1 parent 386bc18 commit d17d39c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ node_modules
dist
dist-ssr
*.local
extension

# Editor directories and files
.vscode/*
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "sentry-sdk-browser-extension",
"private": true,
"version": "1.0.0",
"version": "0.0.1",
"type": "module",
"scripts": {
"compile": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"format": "prettier . --write"
"format": "prettier . --write",
"zip": "rm -rf extension && mkdir -p extension && zip -qq -r extension/chrome.zip dist"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.10.0",
Expand Down

0 comments on commit d17d39c

Please sign in to comment.