Skip to content

Commit 44c4ceb

Browse files
committed
chore:rename to nuxt-auth-utils
1 parent fd5a2c1 commit 44c4ceb

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66

77
### 🩹 Fixes
88

9-
- Workaround for addServerImportsDir not working ([5a189df](https://github.com/Atinux/nuxt-auth-core/commit/5a189df))
9+
- Workaround for addServerImportsDir not working ([5a189df](https://github.com/Atinux/nuxt-auth-utils/commit/5a189df))
1010

1111
### 📖 Documentation
1212

13-
- Update readme ([06f1504](https://github.com/Atinux/nuxt-auth-core/commit/06f1504))
13+
- Update readme ([06f1504](https://github.com/Atinux/nuxt-auth-utils/commit/06f1504))
1414

1515
### 🏡 Chore
1616

17-
- Init ([19caed2](https://github.com/Atinux/nuxt-auth-core/commit/19caed2))
18-
- Add runtime config ([9013484](https://github.com/Atinux/nuxt-auth-core/commit/9013484))
19-
- V0 ([18ea43a](https://github.com/Atinux/nuxt-auth-core/commit/18ea43a))
20-
- Init ([9b75953](https://github.com/Atinux/nuxt-auth-core/commit/9b75953))
17+
- Init ([19caed2](https://github.com/Atinux/nuxt-auth-utils/commit/19caed2))
18+
- Add runtime config ([9013484](https://github.com/Atinux/nuxt-auth-utils/commit/9013484))
19+
- V0 ([18ea43a](https://github.com/Atinux/nuxt-auth-utils/commit/18ea43a))
20+
- Init ([9b75953](https://github.com/Atinux/nuxt-auth-utils/commit/9b75953))
2121

2222
### ❤️ Contributors
2323

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Nuxt Auth Core
1+
# Nuxt Auth Utils
22

33
[![npm version][npm-version-src]][npm-version-href]
44
[![npm downloads][npm-downloads-src]][npm-downloads-href]
55
[![License][license-src]][license-href]
66
[![Nuxt][nuxt-src]][nuxt-href]
77

8-
Minimalist Authentication module for Nuxt.
8+
Minimalist Authentication module for Nuxt exposing Vue composables and server utils.
99

1010
- [ Release Notes](/CHANGELOG.md)
11-
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-auth-core?file=playground%2Fapp.vue) -->
11+
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-auth-utils?file=playground%2Fapp.vue) -->
1212
<!-- - [📖 &nbsp;Documentation](https://example.com) -->
1313

1414
## Features
@@ -22,25 +22,25 @@ This module only works with SSR (server-side rendering) enabled as it uses serve
2222

2323
## Quick Setup
2424

25-
1. Add `nuxt-auth-core` dependency to your project
25+
1. Add `nuxt-auth-utils` dependency to your project
2626

2727
```bash
2828
# Using pnpm
29-
pnpm add -D nuxt-auth-core
29+
pnpm add -D nuxt-auth-utils
3030

3131
# Using yarn
32-
yarn add --dev nuxt-auth-core
32+
yarn add --dev nuxt-auth-utils
3333

3434
# Using npm
35-
npm install --save-dev nuxt-auth-core
35+
npm install --save-dev nuxt-auth-utils
3636
```
3737

38-
2. Add `nuxt-auth-core` to the `modules` section of `nuxt.config.ts`
38+
2. Add `nuxt-auth-utils` to the `modules` section of `nuxt.config.ts`
3939

4040
```js
4141
export default defineNuxtConfig({
4242
modules: [
43-
'nuxt-auth-core'
43+
'nuxt-auth-utils'
4444
]
4545
})
4646
```
@@ -190,14 +190,14 @@ npm run release
190190
```
191191

192192
<!-- Badges -->
193-
[npm-version-src]: https://img.shields.io/npm/v/nuxt-auth-core/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
194-
[npm-version-href]: https://npmjs.com/package/nuxt-auth-core
193+
[npm-version-src]: https://img.shields.io/npm/v/nuxt-auth-utils/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
194+
[npm-version-href]: https://npmjs.com/package/nuxt-auth-utils
195195

196-
[npm-downloads-src]: https://img.shields.io/npm/dm/nuxt-auth-core.svg?style=flat&colorA=18181B&colorB=28CF8D
197-
[npm-downloads-href]: https://npmjs.com/package/nuxt-auth-core
196+
[npm-downloads-src]: https://img.shields.io/npm/dm/nuxt-auth-utils.svg?style=flat&colorA=18181B&colorB=28CF8D
197+
[npm-downloads-href]: https://npmjs.com/package/nuxt-auth-utils
198198

199-
[license-src]: https://img.shields.io/npm/l/nuxt-auth-core.svg?style=flat&colorA=18181B&colorB=28CF8D
200-
[license-href]: https://npmjs.com/package/nuxt-auth-core
199+
[license-src]: https://img.shields.io/npm/l/nuxt-auth-utils.svg?style=flat&colorA=18181B&colorB=28CF8D
200+
[license-href]: https://npmjs.com/package/nuxt-auth-utils
201201

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "nuxt-auth-core",
2+
"name": "nuxt-auth-utils",
33
"version": "0.0.1",
4-
"description": "Minimalist Auth module for Nuxt",
5-
"repository": "Atinux/nuxt-auth-core",
4+
"description": "Minimalist Auth module for Nuxt with SSR",
5+
"repository": "Atinux/nuxt-auth-utils",
66
"license": "MIT",
77
"type": "module",
88
"exports": {
@@ -47,4 +47,4 @@
4747
"nuxt": "^3.8.0",
4848
"vitest": "^0.33.0"
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)