Skip to content

Commit

Permalink
Merge pull request #153 from holochain/fix/svelte-packaging
Browse files Browse the repository at this point in the history
fixed packaging npm script in svelte template
  • Loading branch information
ThetaSinner committed Nov 28, 2023
1 parent 93429e7 commit bbca6dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/svelte/web-app/ui/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"start": "vite --clearScreen false --port $UI_PORT",
"build": "npm run check && vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"package": "npm run build && cd public && bestzip ../dist.zip *"
"package": "npm run build && cd dist && bestzip ../dist.zip *"
},
"dependencies": {
"@holochain/client": "{{holochain_client_version}}",
Expand All @@ -17,7 +17,7 @@
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-textarea": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@material/mwc-slider": "^0.27.0",
"@material/mwc-select": "^0.27.0",
Expand Down

0 comments on commit bbca6dc

Please sign in to comment.