Skip to content

Commit

Permalink
fix: build script
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed Dec 4, 2024
1 parent f884cfd commit 97ec778
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

S3
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
S3
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export default [
'build/',
'.svelte-kit/',
'dist/',
'S3/',
'test-results/',
'*.md',
'src/**/*/Setup.svelte'
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build": "vite build --outDir S3",
"preview": "vite preview --outDir S3",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "echo \"Error: no test specified\" && exit 0"
Expand Down

0 comments on commit 97ec778

Please sign in to comment.