Skip to content

Commit c0ecd29

Browse files
committed
chore: rename to pages
1 parent 7a8b03e commit c0ecd29

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nuxtify-core
1+
# nuxtify-pages
22

33
[![npm version][npm-version-src]][npm-version-href]
44
[![npm downloads][npm-downloads-src]][npm-downloads-href]
@@ -8,7 +8,7 @@
88
My new Nuxt module for doing amazing things.
99

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

1414
## Features
@@ -24,10 +24,10 @@ My new Nuxt module for doing amazing things.
2424
Install the module to your Nuxt application with one command:
2525

2626
```bash
27-
npx nuxi module add nuxtify-core
27+
npx nuxi module add nuxtify-pages
2828
```
2929

30-
That's it! You can now use nuxtify-core in your Nuxt app ✨
30+
That's it! You can now use nuxtify-pages in your Nuxt app ✨
3131

3232
## Contribution
3333

@@ -62,11 +62,11 @@ That's it! You can now use nuxtify-core in your Nuxt app ✨
6262

6363
<!-- Badges -->
6464

65-
[npm-version-src]: https://img.shields.io/npm/v/nuxtify-core/latest.svg?style=flat&colorA=020420&colorB=00DC82
66-
[npm-version-href]: https://npmjs.com/package/nuxtify-core
67-
[npm-downloads-src]: https://img.shields.io/npm/dm/nuxtify-core.svg?style=flat&colorA=020420&colorB=00DC82
68-
[npm-downloads-href]: https://npm.chart.dev/nuxtify-core
69-
[license-src]: https://img.shields.io/npm/l/nuxtify-core.svg?style=flat&colorA=020420&colorB=00DC82
70-
[license-href]: https://npmjs.com/package/nuxtify-core
65+
[npm-version-src]: https://img.shields.io/npm/v/nuxtify-pages/latest.svg?style=flat&colorA=020420&colorB=00DC82
66+
[npm-version-href]: https://npmjs.com/package/nuxtify-pages
67+
[npm-downloads-src]: https://img.shields.io/npm/dm/nuxtify-pages.svg?style=flat&colorA=020420&colorB=00DC82
68+
[npm-downloads-href]: https://npm.chart.dev/nuxtify-pages
69+
[license-src]: https://img.shields.io/npm/l/nuxtify-pages.svg?style=flat&colorA=020420&colorB=00DC82
70+
[license-href]: https://npmjs.com/package/nuxtify-pages
7171
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
7272
[nuxt-href]: https://nuxt.com

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "nuxtify-core",
2+
"name": "nuxtify-pages",
33
"version": "0.0.1",
4-
"description": "Nuxtify core module powered by Nuxt and Vuetify.",
5-
"repository": "nuxtifydev/nuxtify-core",
4+
"description": "Nuxtify pages module powered by Nuxt and Vuetify.",
5+
"repository": "nuxtifydev/nuxtify-pages",
66
"license": "MIT",
77
"type": "module",
88
"exports": {

playground/app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
nuxtify-core module playground!
3+
nuxtify-pages module playground!
44
</div>
55
</template>
66

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"name": "nuxtify-core-playground",
3+
"name": "nuxtify-pages-playground",
44
"type": "module",
55
"scripts": {
66
"dev": "nuxi dev",

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export interface ModuleOptions {}
55

66
export default defineNuxtModule<ModuleOptions>({
77
meta: {
8-
name: 'nuxtify-core',
8+
name: 'nuxtify-pages',
99
configKey: 'nuxtify',
1010
compatibility: {
1111
nuxt: '>=3.16.0',

src/runtime/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineNuxtPlugin } from '#app'
22

33
export default defineNuxtPlugin((_nuxtApp) => {
4-
console.log('Plugin injected by nuxtify-core!')
4+
console.log('Plugin injected by nuxtify-pages!')
55
})

0 commit comments

Comments
 (0)