update vite example for windows users

This commit is contained in:
Ryan Haskell-Glatz 2021-05-02 10:02:51 -05:00
parent 7e64f27955
commit e00fa6167f
2 changed files with 1742 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,13 +5,14 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "npm install && npm run dev", "start": "npm install && npm run dev",
"dev": "elm-spa watch & vite", "dev": "concurrently \"elm-spa watch\" \"vite\"",
"build": "elm-spa gen && vite build" "build": "elm-spa gen && vite build"
}, },
"keywords": [], "keywords": [],
"author": "Ryan Haskell-Glatz", "author": "Ryan Haskell-Glatz",
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"concurrently": "6.0.2",
"elm-spa": "6.0.0", "elm-spa": "6.0.0",
"rollup-plugin-elm": "3.0.0", "rollup-plugin-elm": "3.0.0",
"vite": "2.2.2" "vite": "2.2.2"