Skip to content

Commit b16a192

Browse files
committed
chore: rename package
1 parent e3f9376 commit b16a192

File tree

7 files changed

+30
-23
lines changed

7 files changed

+30
-23
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nuxtify-pages
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-pages?file=playground%2Fapp.vue) -->
11+
<!-- - [🏀 Online playground](https://stackblitz.com/github/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-pages
27+
npx nuxi module add @nuxtify/pages
2828
```
2929

30-
That's it! You can now use nuxtify-pages 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-pages in your Nuxt app ✨
6262

6363
<!-- Badges -->
6464

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
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: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
{
2-
"name": "nuxtify-pages",
3-
"version": "0.0.1",
2+
"name": "@nuxtify/pages",
3+
"version": "0.1.0",
44
"description": "Nuxtify pages module powered by Nuxt and Vuetify.",
5-
"repository": "nuxtifydev/nuxtify-pages",
6-
"homepage": "https://nuxtify.dev/",
75
"license": "MIT",
6+
"homepage": "https://nuxtify.dev/",
87
"author": "Nuxtify.dev <[email protected]>",
8+
"funding": "https://github.com/sponsors/davidstackio",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/nuxtifydev/pages"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/nuxtifydev/pages/issues"
15+
},
916
"type": "module",
1017
"exports": {
1118
".": {

playground/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineNuxtConfig({
44
compatibilityDate: '2025-03-22',
55
nuxtify: {
66
brand: {
7-
name: 'nuxtify-pages-playground',
7+
name: '@nuxtify/pages-playground',
88
},
99
navigation: {
1010
primary: [

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-pages-playground",
3+
"name": "@nuxtify/pages-playground",
44
"type": "module",
55
"scripts": {
66
"dev": "nuxi dev",

playground/pages/test.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const nuxtifyConfig = useNuxtifyConfig()
55
<template>
66
<div>
77
<h1>
8-
nuxtify-pages module playground!
8+
@nuxtify/pages module playground!
99
</h1>
1010

1111
<v-btn>

src/runtime/pages/IndexPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { useServerSeoMeta, useNuxtifyConfig } from '#imports'
33
44
// Page info
55
useServerSeoMeta({
6-
title: 'nuxtify-pages',
7-
description: 'This is the nuxtify-pages homepage.',
6+
title: '@nuxtify/pages',
7+
description: 'This is the @nuxtify/pages homepage.',
88
})
99
1010
// App state

0 commit comments

Comments
 (0)