Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit b6b1e7a

Browse files
committed
chore(deps): update dependencies
2 parents 10aad55 + b1bdb5c commit b6b1e7a

File tree

8 files changed

+1698
-1399
lines changed

8 files changed

+1698
-1399
lines changed

.prettierrc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
{
22
"printWidth": 120,
3-
"tabWidth": 2,
4-
"useTabs": false,
5-
"semi": true,
63
"singleQuote": true,
7-
"quoteProps": "as-needed",
84
"trailingComma": "es5",
9-
"bracketSpacing": true,
105
"arrowParens": "always",
11-
"htmlWhitespaceSensitivity": "css",
12-
"proseWrap": "preserve",
136
"endOfLine": "lf",
147
"overrides": [
158
{

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Navigate to [localhost:5000](http://localhost:5000). You should see your app run
3535

3636
By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.
3737

38+
<<<<<<< HEAD
39+
=======
40+
If you're using [Visual Studio Code](https://code.visualstudio.com/) we recommend installing the official extension [Svelte for VS Code](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.
41+
>>>>>>> template/master
3842
3943
## Building and running in production mode
4044

@@ -57,6 +61,7 @@ If you're building a single-page app (SPA) with multiple routes, sirv needs to b
5761
"start": "sirv public --single"
5862
```
5963

64+
<<<<<<< HEAD
6065

6166
## Deploying to the web
6267

@@ -66,17 +71,47 @@ Install `now` if you haven't already:
6671

6772
```bash
6873
npm install -g now
74+
=======
75+
## Using TypeScript
76+
77+
This template comes with a script to set up a TypeScript development environment, you can run it immediately after cloning the template with:
78+
79+
```bash
80+
node scripts/setupTypeScript.js
81+
```
82+
83+
Or remove the script via:
84+
85+
```bash
86+
rm scripts/setupTypeScript.js
87+
```
88+
89+
## Deploying to the web
90+
91+
### With [Vercel](https://vercel.com)
92+
93+
Install `vercel` if you haven't already:
94+
95+
```bash
96+
npm install -g vercel
97+
>>>>>>> template/master
6998
```
7099
71100
Then, from within your project folder:
72101
73102
```bash
74103
cd public
104+
<<<<<<< HEAD
75105
now deploy --name my-project
76106
```
77107
78108
As an alternative, use the [Now desktop client](https://zeit.co/download) and simply drag the unzipped project folder to the taskbar icon.
79109
110+
=======
111+
vercel deploy --name my-project
112+
```
113+
114+
>>>>>>> template/master
80115
### With [surge](https://surge.sh/)
81116
82117
Install `surge` if you haven't already:

0 commit comments

Comments
 (0)