Skip to content

Commit 3a7f6a0

Browse files
committed
fix: update urls and bump version
1 parent 698c831 commit 3a7f6a0

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Vue3 Google Sign-in
22

3-
[![Build](https://github.com/kasvith/vue3-google-signin/actions/workflows/build.yaml/badge.svg)](https://github.com/kasvith/vue3-google-signin/actions/workflows/build.yaml) [![npm](https://img.shields.io/npm/v/vue3-google-signin)](https://www.npmjs.com/package/vue3-google-signin) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/vue3-google-signin) ![npm](https://img.shields.io/npm/dw/vue3-google-signin) ![NPM](https://img.shields.io/npm/l/vue3-google-signin) [![Docs](https://img.shields.io/badge/docs-Read%20Now-green)](https://vue3-google-signin.vercel.app/)
3+
[![Build](https://github.com/wavezync/vue3-google-signin/actions/workflows/build.yaml/badge.svg)](https://github.com/wavezync/vue3-google-signin/actions/workflows/build.yaml) [![npm](https://img.shields.io/npm/v/vue3-google-signin)](https://www.npmjs.com/package/vue3-google-signin) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/vue3-google-signin) ![npm](https://img.shields.io/npm/dw/vue3-google-signin) ![NPM](https://img.shields.io/npm/l/vue3-google-signin) [![Docs](https://img.shields.io/badge/docs-Read%20Now-green)](https://vue3-google-signin.vercel.app/)
44

55
Use Google Identity Services with your Vue3 App easily
66

@@ -49,7 +49,7 @@ app.mount("#app");
4949

5050
## With Nuxt
5151

52-
To easily use the library with **Nuxt3** we have provided a module called [nuxt-vue3-google-signin](https://github.com/kasvith/nuxt-vue3-google-signin) which take care of proper component registration and plugin initialization :fire:.
52+
To easily use the library with **Nuxt3** we have provided a module called [nuxt-vue3-google-signin](https://github.com/wavezync/nuxt-vue3-google-signin) which take care of proper component registration and plugin initialization :fire:.
5353

5454
### Add package
5555

docs/.vitepress/config.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import pkg from "../../package.json";
33

44
const TITLE = "Vue3 Google Sign-in";
55
const DESCRIPTION = "Google Sign-in for Vue3 Apps";
6-
const SOCIAL_PREVIEW_URL = "https://vue3-google-signin.vercel.app/cover.png";
6+
const SOCIAL_PREVIEW_URL = "https://vue3-google-signin.wavezync.com/cover.png";
77

88
const SideBar: DefaultTheme.Sidebar = [
99
{
@@ -136,7 +136,7 @@ const Head: HeadConfig[] = [
136136
],
137137
[
138138
"meta",
139-
{ property: "og:url", content: "https://vue3-google-signin.vercel.app/" },
139+
{ property: "og:url", content: "https://vue3-google-signin.wavezync.com/" },
140140
],
141141

142142
// twitter card
@@ -151,7 +151,7 @@ const Head: HeadConfig[] = [
151151
"meta",
152152
{
153153
name: "twitter:site",
154-
content: "@kasvith",
154+
content: "@wavezync",
155155
},
156156
],
157157
[
@@ -181,14 +181,18 @@ const Nav: DefaultTheme.NavItem[] = [
181181
{
182182
text: "Guide",
183183
link: "/guide/",
184+
},
185+
{
186+
text: "🌐 Visit WaveZync",
187+
link: "https://wavezync.com",
184188
}
185189
];
186190

187191
const SocialLinks: DefaultTheme.SocialLink[] = [
188192
{
189193
icon: "github",
190-
link: "https://github.com/kasvith/vue3-google-signin",
191-
},
194+
link: "https://github.com/wavezync/vue3-google-signin",
195+
}
192196
];
193197

194198
export default defineConfig({
@@ -202,7 +206,7 @@ export default defineConfig({
202206
sidebar: SideBar,
203207
footer: {
204208
message: "Released under the MIT License.",
205-
copyright: "Copyright © 2022-present Kasun Vithanage",
209+
copyright: "Copyright © 2022-present WaveZync",
206210
},
207211
algolia: {
208212
apiKey: "5780c07dfe3e4a16e39773773e8a7b07",

docs/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Now the library is ready to be used :sparkles:
6565

6666
## With Nuxt
6767

68-
To easily use the library with **Nuxt3** we have provided a module called [nuxt-vue3-google-signin](https://github.com/kasvith/nuxt-vue3-google-signin) which take care of proper component registration and plugin initialization :fire:.
68+
To easily use the library with **Nuxt3** we have provided a module called [nuxt-vue3-google-signin](https://github.com/wavezync/nuxt-vue3-google-signin) which take care of proper component registration and plugin initialization :fire:.
6969

7070
### Add package
7171

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ hero:
1818
link: /guide/
1919
- theme: alt
2020
text: View on GitHub
21-
link: https://github.com/kasvith/vue3-google-signin
21+
link: https://github.com/wavezync/vue3-google-signin
2222

2323
features:
2424
- icon: ⚙️

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "vue3-google-signin",
33
"type": "module",
4-
"version": "1.3.1",
4+
"version": "1.3.2",
55
"description": "Google Sign-in for Vue3 with Google Identity Service",
66
"license": "MIT",
77
"author": {
88
"name": "Kasun Vithanage",
99
"email": "[email protected]",
1010
"url": "https://kasvith.me"
1111
},
12-
"homepage": "https://vue3-google-signin.vercel.app",
12+
"homepage": "https://vue3-google-signin.wavezync.com",
1313
"scripts": {
1414
"dev": "vite",
1515
"build": "vue-tsc --noEmit && vite build",
@@ -61,7 +61,7 @@
6161
],
6262
"repository": {
6363
"type": "git",
64-
"url": "https://github.com/kasvith/vue3-google-signin"
64+
"url": "https://github.com/wavezync/vue3-google-signin"
6565
},
6666
"devDependencies": {
6767
"@rushstack/eslint-patch": "^1.1.0",

0 commit comments

Comments
 (0)