Skip to content

Commit

Permalink
chore(name): 🚚 Removed package scope
Browse files Browse the repository at this point in the history
  • Loading branch information
itpropro committed Dec 28, 2023
1 parent 815a5a8 commit 0b0875a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ This module only works with SSR (server-side rendering) enabled as it uses serve

```bash
# Using pnpm
pnpm add -D @itpropro/nuxt-oidc-auth
pnpm add -D nuxt-oidc-auth

# Using yarn
yarn add --dev @itpropro/nuxt-oidc-auth
yarn add --dev nuxt-oidc-auth

# Using npm
npm install --save-dev @itpropro/nuxt-oidc-auth
npm install --save-dev nuxt-oidc-auth
```

2. Add `@itpropro/nuxt-oidc-auth` to the `modules` section of `nuxt.config.ts`
2. Add `nuxt-oidc-auth` to the `modules` section of `nuxt.config.ts`

```js
export default defineNuxtConfig({
modules: [
'@itpropro/nuxt-oidc-auth'
'nuxt-oidc-auth'
]
})
```
Expand Down Expand Up @@ -422,13 +422,13 @@ npm run release
<!-- Badges -->
[npm-version-src]: https://img.shields.io/npm/v/%40itpropro/nuxt-oidc-auth?labelColor=18181B&color=28CF8D
[npm-version-href]: https://npmjs.com/package/@itpropro/nuxt-oidc-auth
[npm-version-href]: https://npmjs.com/package/nuxt-oidc-auth
[npm-downloads-src]: https://img.shields.io/npm/dm/%40itpropro/nuxt-oidc-auth?labelColor=18181B&color=28CF8D
[npm-downloads-href]: https://npmjs.com/package/@itpropro/nuxt-oidc-auth
[npm-downloads-href]: https://npmjs.com/package/nuxt-oidc-auth
[license-src]: https://img.shields.io/npm/l/%40itpropro%2Fnuxt-oidc-auth?labelColor=18181B&color=28CF8D
[license-href]: https://npmjs.com/package/@itpropro/nuxt-oidc-auth
[license-href]: https://npmjs.com/package/nuxt-oidc-auth
[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
[nuxt-href]: https://nuxt.com
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@itpropro/nuxt-oidc-auth",
"name": "nuxt-oidc-auth",
"private": false,
"version": "0.7.7",
"description": "OIDC authentication module for Nuxt SSR",
Expand Down Expand Up @@ -55,4 +55,4 @@
"vitest": "^1.1.0",
"vue-tsc": "^1.8.26"
}
}
}
2 changes: 1 addition & 1 deletion playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineNuxtConfig } from 'nuxt/config'

export default defineNuxtConfig({
modules: [
'@itpropro/nuxt-oidc-auth',
'nuxt-oidc-auth',
'@unocss/nuxt',
'@nuxtjs/color-mode',
],
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"@iconify-json/simple-icons": "^1.1.85",
"@nuxtjs/color-mode": "^3.3.2",
"@unocss/nuxt": "^0.58.0",
"@itpropro/nuxt-oidc-auth": "latest"
"nuxt-oidc-auth": "latest"
}
}
2 changes: 1 addition & 1 deletion test/fixtures/module/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineNuxtConfig } from 'nuxt/config'

export default defineNuxtConfig({
modules: [
'@itpropro/nuxt-oidc-auth',
'nuxt-oidc-auth',
],
oidc: {
defaultProvider: 'github',
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "basic",
"type": "module",
"dependencies": {
"@itpropro/nuxt-oidc-auth": "file:../../../"
"nuxt-oidc-auth": "file:../../../"
}
}

0 comments on commit 0b0875a

Please sign in to comment.