Skip to content

Commit

Permalink
Switch from Parcel to SvelteKit
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldiekmeier committed Apr 30, 2023
1 parent a728d8e commit d986fa0
Show file tree
Hide file tree
Showing 10 changed files with 671 additions and 5,956 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/.cache
/dist
/.svelte-kit
/build
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,22 @@
"main": "index.js",
"type": "module",
"scripts": {
"dev": "parcel serve src/index.html",
"build": "rm -rf dist && parcel build --public-url /salt src/index.html",
"dev": "vite dev",
"build": "vite build",
"test": "node --test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"parcel": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"sass": "^1.26.3",
"svelte": "^3.20.1",
"svelte-preprocess": "^3.7.1"
"svelte": "^3.58.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.15.9",
"@sveltejs/vite-plugin-svelte": "^2.1.1",
"sass": "^1.62.1",
"vite": "^4.3.3"
},
"prettier": {
"semi": false,
Expand Down

0 comments on commit d986fa0

Please sign in to comment.