From fc4abb27d5b18e4ee6fb86c3d6eedafd9e4781b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Sat, 8 Apr 2023 18:33:00 +0200 Subject: [PATCH] Fix documentation --- CHANGELOG.md | 2 +- README.md | 2 +- package.json | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d32530d..49fb47c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## v2.0.1 +## v2.0.0 ## v1.0.6 diff --git a/README.md b/README.md index 7d6a1c5..7d91fb4 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ export default defineNuxtConfig({ This will be your callback url (host is determined by `window.location.origin`): -- Callback: `http://localhost:3000/auth/login` +- Callback: `http://localhost:3000/login` That's it! You can now use @bitinflow/nuxt-oauth in your Nuxt app ✨ diff --git a/package.json b/package.json index b00f517..acbf759 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bitinflow/nuxt-oauth", - "version": "2.0.1", + "version": "2.0.0", "description": "Nuxt 3 OAuth Module", "license": "MIT", "type": "module", @@ -21,7 +21,8 @@ "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build --stub && nuxi prepare playground", - "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish --access public && git push --follow-tags", + "release": "npm run lint && npm run test && npm run prepack && changelogen --release && git push --follow-tags", + "push": "npm publish --access public", "lint": "eslint .", "test": "vitest run", "test:watch": "vitest watch"