Skip to content

Commit

Permalink
fix: update urls and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kasvith committed Nov 8, 2023
1 parent 698c831 commit 3a7f6a0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vue3 Google Sign-in

[![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/)
[![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/)

Use Google Identity Services with your Vue3 App easily

Expand Down Expand Up @@ -49,7 +49,7 @@ app.mount("#app");

## With Nuxt

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:.
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:.

### Add package

Expand Down
16 changes: 10 additions & 6 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import pkg from "../../package.json";

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

const SideBar: DefaultTheme.Sidebar = [
{
Expand Down Expand Up @@ -136,7 +136,7 @@ const Head: HeadConfig[] = [
],
[
"meta",
{ property: "og:url", content: "https://vue3-google-signin.vercel.app/" },
{ property: "og:url", content: "https://vue3-google-signin.wavezync.com/" },
],

// twitter card
Expand All @@ -151,7 +151,7 @@ const Head: HeadConfig[] = [
"meta",
{
name: "twitter:site",
content: "@kasvith",
content: "@wavezync",
},
],
[
Expand Down Expand Up @@ -181,14 +181,18 @@ const Nav: DefaultTheme.NavItem[] = [
{
text: "Guide",
link: "/guide/",
},
{
text: "🌐 Visit WaveZync",
link: "https://wavezync.com",
}
];

const SocialLinks: DefaultTheme.SocialLink[] = [
{
icon: "github",
link: "https://github.com/kasvith/vue3-google-signin",
},
link: "https://github.com/wavezync/vue3-google-signin",
}
];

export default defineConfig({
Expand All @@ -202,7 +206,7 @@ export default defineConfig({
sidebar: SideBar,
footer: {
message: "Released under the MIT License.",
copyright: "Copyright © 2022-present Kasun Vithanage",
copyright: "Copyright © 2022-present WaveZync",
},
algolia: {
apiKey: "5780c07dfe3e4a16e39773773e8a7b07",
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Now the library is ready to be used :sparkles:

## With Nuxt

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:.
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:.

### Add package

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ hero:
link: /guide/
- theme: alt
text: View on GitHub
link: https://github.com/kasvith/vue3-google-signin
link: https://github.com/wavezync/vue3-google-signin

features:
- icon: ⚙️
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "vue3-google-signin",
"type": "module",
"version": "1.3.1",
"version": "1.3.2",
"description": "Google Sign-in for Vue3 with Google Identity Service",
"license": "MIT",
"author": {
"name": "Kasun Vithanage",
"email": "[email protected]",
"url": "https://kasvith.me"
},
"homepage": "https://vue3-google-signin.vercel.app",
"homepage": "https://vue3-google-signin.wavezync.com",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
Expand Down Expand Up @@ -61,7 +61,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/kasvith/vue3-google-signin"
"url": "https://github.com/wavezync/vue3-google-signin"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
Expand Down

0 comments on commit 3a7f6a0

Please sign in to comment.