Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muonw/muonw-sveltekit-template
A project template based on SvelteKit. If you are looking for SvelteKit, please visit https://github.com/sveltejs/kit or https://kit.svelte.dev
https://github.com/muonw/muonw-sveltekit-template
Last synced: 5 days ago
JSON representation
A project template based on SvelteKit. If you are looking for SvelteKit, please visit https://github.com/sveltejs/kit or https://kit.svelte.dev
- Host: GitHub
- URL: https://github.com/muonw/muonw-sveltekit-template
- Owner: muonw
- License: other
- Created: 2023-03-23T20:46:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-28T17:45:24.000Z (about 1 year ago)
- Last Synced: 2024-11-11T02:05:45.170Z (about 2 months ago)
- Language: Svelte
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A project template based on SvelteKit. If you are looking for SvelteKit, please visit [github.com/sveltejs/kit](https://github.com/sveltejs/kit) or [kit.svelte.dev](https://kit.svelte.dev/)
```sh
PROJECT_NAME=myproject_$(date +%s)if [ -d "$PROJECT_NAME" ]; then
echo "$PROJECT_NAME already exists!"; exit
fiwget -O "${PROJECT_NAME}.zip" https://github.com/muonw/muonw-sveltekit-template/archive/refs/heads/main.zip
unzip "${PROJECT_NAME}.zip" -d "${PROJECT_NAME}"
rm "${PROJECT_NAME}.zip"
cd "${PROJECT_NAME}"
default_dir=$(echo */)if [ ! -z "${default_dir}" ]; then
shopt -s dotglob
mv "${default_dir}"* ./ && rm -r ./"${default_dir}"
fi
```Base: Skeleton project + Typescript + ESLint + Prettier
### Summary of the modifications:
- src/lib/index.ts added
- src/lib/styles/global.scss added
- src/routes/+layout.ts
- prerender: true
- ssr: false- static
- @muonw/mascara static files added
- .nojekyll added
- favicon.webp and favicon-dark.webp added- .gitignore
- /package-lock.json added- .npmrc
- @muonw registry added- package.json
- skeleton & library combined
- license updated
- dependencies
- @sveltejs/adapter-auto --> @sveltejs/adapter-static
- @sveltejs/package added
- @muonw/mascara added
- sass added
- versions updated- svelte.config.js
- adapter: auto --> static
- adapter pages & assets: docs- tsconfig.json
- sourceMap --> false