Skip to content

Commit ad5e14b

Browse files
committed
refactor: update scope package organization to zadigetvoltaire
1 parent 540e66f commit ad5e14b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ Nuxt Well-Known module is integrated with the [Nuxt Devtools](https://github.com
2020

2121
## Quick Setup
2222

23-
1. Add `@zadig-voltaire/nuxt-well-known` dependency to your project
23+
1. Add `@zadigetvoltaire/nuxt-well-known` dependency to your project
2424

2525
```bash
2626
# Using pnpm
27-
pnpm add -D @zadig-voltaire/nuxt-well-known
27+
pnpm add -D @zadigetvoltaire/nuxt-well-known
2828

2929
# Using yarn
30-
yarn add --dev @zadig-voltaire/nuxt-well-known
30+
yarn add --dev @zadigetvoltaire/nuxt-well-known
3131

3232
# Using npm
33-
npm install --save-dev @zadig-voltaire/nuxt-well-known
33+
npm install --save-dev @zadigetvoltaire/nuxt-well-known
3434
```
3535

36-
2. Add `@zadig-voltaire/nuxt-well-known` to the `modules` section of `nuxt.config.ts`
36+
2. Add `@zadigetvoltaire/nuxt-well-known` to the `modules` section of `nuxt.config.ts`
3737

3838
```js
3939
export default defineNuxtConfig({
4040
modules: [
41-
'@zadig-voltaire/nuxt-well-known'
41+
'@zadigetvoltaire/nuxt-well-known'
4242
],
4343
wellKnown: {
4444
devtools: true,
@@ -122,7 +122,7 @@ type ContentUriOptions = {
122122
// nuxt.config.ts
123123
export default defineNuxtConfig({
124124
modules: [
125-
'@zadig-voltaire/nuxt-well-known',
125+
'@zadigetvoltaire/nuxt-well-known',
126126
],
127127
wellKnown: {
128128
contentUris: [
@@ -182,14 +182,14 @@ pnpm release
182182
---
183183

184184
<!-- Badges -->
185-
[npm-version-src]: https://img.shields.io/npm/v/@zadig-voltaire/nuxt-well-known/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
186-
[npm-version-href]: https://npmjs.com/package/@zadig-voltaire/nuxt-well-known
185+
[npm-version-src]: https://img.shields.io/npm/v/@zadigetvoltaire/nuxt-well-known/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
186+
[npm-version-href]: https://npmjs.com/package/@zadigetvoltaire/nuxt-well-known
187187

188-
[npm-downloads-src]: https://img.shields.io/npm/dm/@zadig-voltaire/nuxt-well-known.svg?style=flat&colorA=18181B&colorB=28CF8D
189-
[npm-downloads-href]: https://npmjs.com/package/@zadig-voltaire/nuxt-well-known
188+
[npm-downloads-src]: https://img.shields.io/npm/dm/@zadigetvoltaire/nuxt-well-known.svg?style=flat&colorA=18181B&colorB=28CF8D
189+
[npm-downloads-href]: https://npmjs.com/package/@zadigetvoltaire/nuxt-well-known
190190

191-
[license-src]: https://img.shields.io/npm/l/@zadig-voltaire/nuxt-well-known.svg?style=flat&colorA=18181B&colorB=28CF8D
192-
[license-href]: https://npmjs.com/package/@zadig-voltaire/nuxt-well-known
191+
[license-src]: https://img.shields.io/npm/l/@zadigetvoltaire/nuxt-well-known.svg?style=flat&colorA=18181B&colorB=28CF8D
192+
[license-href]: https://npmjs.com/package/@zadigetvoltaire/nuxt-well-known
193193

194194
[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
195195
[nuxt-href]: https://nuxt.com

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@zadig-voltaire/nuxt-well-known",
2+
"name": "@zadigetvoltaire/nuxt-well-known",
33
"version": "0.0.4",
44
"description": "Nuxt module to add well-known files and rules with middlewares",
55
"license": "MIT",

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const CHANGE_PASSWORD_PATH = 'change-password'
2121

2222
export default defineNuxtModule<ModuleOptions>({
2323
meta: {
24-
name: '@zadig-voltaire/nuxt-well-known',
24+
name: '@zadigetvoltaire/nuxt-well-known',
2525
configKey: 'wellKnown'
2626
},
2727
// Default configuration options of the Nuxt module

0 commit comments

Comments
 (0)