Skip to content

Commit

Permalink
fix: removes unnecessary tsc step in sveltekit build script (#4070)
Browse files Browse the repository at this point in the history
  • Loading branch information
krpeacock authored Jan 21, 2025
1 parent 9900826 commit 47f6b43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

### fix: removes unnecessary tsc step in sveltekit build script

### feat!: `dfx info pocketic-config-port`

Due to the incompatibility between the APIs on the replica port and the PocketIC port, `dfx info replica-port`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"setup": "npm i && dfx canister create __backend_name__ && dfx generate __backend_name__ && dfx deploy",
"start": "vite --port 3000",
"prebuild": "dfx generate",
"build": "tsc && vite build",
"build": "vite build",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\""
},
"dependencies": {
Expand Down

0 comments on commit 47f6b43

Please sign in to comment.