Skip to content

Commit 47c3161

Browse files
authored
forgive me (#14184)
1 parent 7a3583b commit 47c3161

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

documentation/docs/25-build-and-deploy/50-adapter-static.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
cache: npm
139139

140140
- name: Install dependencies
141-
run: npm install
141+
run: npm i
142142

143143
- name: build
144144
env:

documentation/docs/40-best-practices/07-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Doing this manually is tedious. There are a variety of techniques you can use, d
3333
Install:
3434

3535
```sh
36-
npm install --save-dev @sveltejs/enhanced-img
36+
npm i -D @sveltejs/enhanced-img
3737
```
3838

3939
Adjust `vite.config.js`:

documentation/docs/60-appendix/20-integrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ See [sveltesociety.dev](https://sveltesociety.dev/) for a full listing of [packa
4141

4242
`svelte-preprocess` has some additional functionality not found in `vitePreprocess` such as support for Pug, Babel, and global styles. However, `vitePreprocess` may be faster and require less configuration, so it is used by default. Note that CoffeeScript is [not supported](https://github.com/sveltejs/kit/issues/2920#issuecomment-996469815) by SvelteKit.
4343

44-
You will need to install `svelte-preprocess` with `npm install --save-dev svelte-preprocess` and [add it to your `svelte.config.js`](https://github.com/sveltejs/svelte-preprocess/blob/main/docs/usage.md#with-svelte-config). After that, you will often need to [install the corresponding library](https://github.com/sveltejs/svelte-preprocess/blob/main/docs/getting-started.md) such as `npm install -D sass` or `npm install -D less`.
44+
You will need to install `svelte-preprocess` with `npm i -D svelte-preprocess` and [add it to your `svelte.config.js`](https://github.com/sveltejs/svelte-preprocess/blob/main/docs/usage.md#with-svelte-config). After that, you will often need to [install the corresponding library](https://github.com/sveltejs/svelte-preprocess/blob/main/docs/getting-started.md) such as `npm i -D sass` or `npm i -D less`.
4545

4646
## Vite plugins
4747

0 commit comments

Comments
 (0)