Skip to content

Commit ecd8313

Browse files
authored
chore: update versions (#7)
* chore: update versions * chore: bump versions * chore: exclude vitepress cache from git * chrore: update sveltekit entry * chore: update version and package manager * chore: update plugin version * chore: update kit peer tip * chore: update kit plugin types * chore: remove `base` from kit adapter entry
1 parent 5ec8fec commit ecd8313

File tree

5 files changed

+804
-876
lines changed

5 files changed

+804
-876
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules
33
dist
44
# intellij stuff
55
.idea/
6+
.vitepress/cache/
67
.vitepress/dist/

frameworks/sveltekit.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: SvelteKit | Frameworks
44

55
# SvelteKit
66

7-
::: warning
8-
We recommend you use the latest version of SvelteKit. The latest versions will also require you to update your application to use Vite ^3.2.0 and Node 16.14+.
7+
::: tip
8+
From version `^0.1.0`, `SvelteKitPWA` has SvelteKit `^1.0.0` as peer dependency.
99
:::
1010

1111
::: info
@@ -51,6 +51,7 @@ export interface KitOptions {
5151
/**
5252
* The base path for your application: by default will use the Vite base.
5353
*
54+
* @deprecated since ^0.1.0 version, the plugin has SvelteKit ^1.0.0 as peer dependency, Vite's base is now properly configured.
5455
* @default '/'
5556
* @see https://kit.svelte.dev/docs/configuration#paths
5657
*/
@@ -246,7 +247,6 @@ The best place to include the `ReloadPrompt` component will be in main layout of
246247
## SvelteKit and Adapters
247248

248249
If you set certain SvelteKit options, you should also configure the PWA plugin properly using the `kit` option:
249-
- [base](https://kit.svelte.dev/docs/configuration#paths)
250250
- [outDir](https://kit.svelte.dev/docs/configuration#outdir)
251251
- [adapterFallback](https://github.com/sveltejs/kit/tree/master/packages/adapter-static#fallback)
252252
- [trailingSlash](https://kit.svelte.dev/docs/configuration#trailingslash)

guide/static-assets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can also add another static assets such as `favicon`, `svg` and `font` files
1111
## Reusing src/assets images
1212

1313
::: warning
14-
This feature is only available from version `0.13.4+`.
14+
This feature is only available from version `0.14.1+`.
1515
:::
1616

1717
If you are using images in your application via `src/assets` directory (or any other directory), and you want to reuse those images in your `PWA Manifest` icons, you can use them with these 3 limitations:

package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vite-pwa-docs",
3-
"version": "0.13.3",
4-
"packageManager": "pnpm@7.14.2",
3+
"version": "0.14.0",
4+
"packageManager": "pnpm@7.18.2",
55
"description": "Zero-config PWA for Vite Documentation",
66
"author": "antfu <[email protected]>",
77
"license": "MIT",
@@ -37,27 +37,27 @@
3737
"lint-fix": "nr lint --fix"
3838
},
3939
"dependencies": {
40-
"@vueuse/core": "^9.2.0",
41-
"@vueuse/shared": "^9.2.0",
42-
"vue": "^3.2.38"
40+
"@vueuse/core": "^9.9.0",
41+
"@vueuse/shared": "^9.9.0",
42+
"vue": "^3.2.45"
4343
},
4444
"devDependencies": {
45-
"@antfu/eslint-config": "^0.27.0",
46-
"@antfu/ni": "^0.18.0",
45+
"@antfu/eslint-config": "^0.34.0",
46+
"@antfu/ni": "^0.18.8",
4747
"@types/workbox-build": "^5.0.1",
48-
"@typescript-eslint/eslint-plugin": "^5.38.0",
49-
"@typescript-eslint/parser": "^5.0.0",
50-
"@vite-pwa/vitepress": "^0.0.2",
51-
"@vitejs/plugin-vue": "^3.1.0",
52-
"@vueuse/core": "^9.2.0",
53-
"eslint": "^8.23.0",
48+
"@typescript-eslint/eslint-plugin": "^5.47.0",
49+
"@typescript-eslint/parser": "^5.47.0",
50+
"@vite-pwa/vitepress": "^0.0.3",
51+
"@vitejs/plugin-vue": "^4.0.0",
52+
"@vueuse/core": "^9.9.0",
53+
"eslint": "^8.30.0",
5454
"https-localhost": "^4.7.1",
55-
"typescript": "^4.8.4",
56-
"unocss": "^0.45.26",
57-
"unplugin-vue-components": "^0.22.4",
58-
"vite": "^3.1.4",
59-
"vite-plugin-pwa": "^0.13.3",
60-
"vitepress": "^1.0.0-alpha.27",
55+
"typescript": "^4.9.4",
56+
"unocss": "^0.48.0",
57+
"unplugin-vue-components": "^0.22.12",
58+
"vite": "^4.0.3",
59+
"vite-plugin-pwa": "^0.14.0",
60+
"vitepress": "^1.0.0-alpha.33",
6161
"workbox-window": "^6.5.4"
6262
},
6363
"pnpm": {

0 commit comments

Comments
 (0)