removed snowpack dependency

This commit is contained in:
Geoff Doty 2020-09-19 22:12:48 -04:00
parent 0cb0d18367
commit c97e48c51d
3 changed files with 12 additions and 1812 deletions

View File

@ -17,8 +17,7 @@ Building small things with tiny libraries is my joy, and this app is no differen
- [Litedom JS](https://litedom.js.org/) - A Tiny View Library - [Litedom JS](https://litedom.js.org/) - A Tiny View Library
- [Matrialize CSS](https://materializecss.com/) - A Not so Tiny CSS Framework - [Matrialize CSS](https://materializecss.com/) - A Not so Tiny CSS Framework
- [DexieDB] - A Robust IndexedDB Wrapper - [DexieDB](https://dexie.org/) - A Robust IndexedDB Wrapper
- [Snowpack] - Fontend Build Tool, barily utilized
### Features ### Features
@ -27,14 +26,16 @@ Building small things with tiny libraries is my joy, and this app is no differen
## Quick Start ## Quick Start
`npm start` Runs the app in the development mode using `live-server`. By default. Your browser should open to `http://localhost:8080`.
`npm start` Runs the app in the development mode. By default you can open at http://localhost:8080 in your browser to view. > live-server reloads just rock for development.
Your page will reload if you make edits. You will also see any lint errors in the console. ## TODO
`npm run build` will build a static copy of your site in the `build/` folder, and thats it --your app is ready to be deployed! - Integrate `frontend-dependencies` or `Parcel` for vendor lib management
- Add ability to add entries/details to catalog/entries from modal
> SEE: [snowpack.dev](https://www.snowpack.dev/) for more options - Add ability to change dates back and forward on date line
- Add ability to load date based on date picker
## Support ## Support

1798
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,8 @@
{ {
"scripts": { "scripts": {
"start": "snowpack dev", "start": "npx live-server --mount=/:./public/",
"build": "snowpack build",
"test": "echo \"This template does not include a test runner by default.\" && exit 1" "test": "echo \"This template does not include a test runner by default.\" && exit 1"
}, },
"dependencies": { "dependencies": {},
"dexie": "^3.0.2" "devDependencies": {}
},
"devDependencies": {
"snowpack": "^2.10.3"
}
} }