Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.83 KB

README.md

File metadata and controls

48 lines (41 loc) · 1.83 KB

svelte-template

This is my personal template for Svelte/SvelteKit projects. It is very opinionated and might not be your taste, but feel free to fork it and make it your own :3

Features

Command to use

echo -n 'Project name: '
read project_name
git clone https://github.com/13x1/svelte-template.git $project_name
cd $project_name
git remote rename origin template
sed -i "s/svelte-template/$project_name/g" package*.json
rm README.md
echo -e "# $project_name\n\nInitialized with
[svelte-template](https://github.com/13x1/svelte-template)" > README.md
npm install
git add -A
git commit -m "Use template for $project_name"

Or, if you already cloned the template:

project_name=$(basename $(pwd))
git remote add template https://github.com/13x1/svelte-template
sed -i "s/svelte-template/$project_name/g" package*.json
rm README.md
echo -e "# $project_name\n\nInitialized with
[svelte-template](https://github.com/13x1/svelte-template)" > README.md
npm install
git add -A
git commit -m "Use template for $project_name"