Skip to content

Commit

Permalink
chore: setting up
Browse files Browse the repository at this point in the history
  • Loading branch information
ijkml committed Apr 12, 2024
1 parent 1182999 commit 38c486d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ Get your module up and running quickly.
Find and replace all on all files (CMD+SHIFT+F):
- Name: Nuxt Umami
- Package name: nu-ma
- Description: My new Nuxt module
- Package name: nuxima
-->

# Nuxt Umami
# Nuxima (Nuxt Umami)

[![npm version][npm-version-src]][npm-version-href]
[![npm downloads][npm-downloads-src]][npm-downloads-href]
Expand All @@ -17,7 +16,7 @@ Find and replace all on all files (CMD+SHIFT+F):
Umami Module for Nuxt

- [ Release Notes](/CHANGELOG.md)
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nu-ma?file=playground%2Fapp.vue) -->
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxima?file=playground%2Fapp.vue) -->
<!-- - [📖 &nbsp;Documentation](https://example.com) -->

## Features
Expand All @@ -32,7 +31,7 @@ Umami Module for Nuxt
Install the module to your Nuxt application with one command:

```bash
npx nuxi module add nu-ma
npx nuxi module add nuxima
```

That's it! You can now use Nuxt Umami in your Nuxt app ✨
Expand Down Expand Up @@ -69,14 +68,14 @@ That's it! You can now use Nuxt Umami in your Nuxt app ✨
</details>

<!-- Badges -->
[npm-version-src]: https://img.shields.io/npm/v/nu-ma/latest.svg?style=flat&colorA=020420&colorB=00DC82
[npm-version-href]: https://npmjs.com/package/nu-ma
[npm-version-src]: https://img.shields.io/npm/v/nuxima/latest.svg?style=flat&colorA=020420&colorB=00DC82
[npm-version-href]: https://npmjs.com/package/nuxima

[npm-downloads-src]: https://img.shields.io/npm/dm/nu-ma.svg?style=flat&colorA=020420&colorB=00DC82
[npm-downloads-href]: https://npmjs.com/package/nu-ma
[npm-downloads-src]: https://img.shields.io/npm/dm/nuxima.svg?style=flat&colorA=020420&colorB=00DC82
[npm-downloads-href]: https://npmjs.com/package/nuxima

[license-src]: https://img.shields.io/npm/l/nu-ma.svg?style=flat&colorA=020420&colorB=00DC82
[license-href]: https://npmjs.com/package/nu-ma
[license-src]: https://img.shields.io/npm/l/nuxima.svg?style=flat&colorA=020420&colorB=00DC82
[license-href]: https://npmjs.com/package/nuxima

[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?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,10 +1,10 @@
{
"name": "nu-ma",
"name": "nuxima",
"type": "module",
"version": "0.0.0",
"description": "Umami module for Nuxt",
"license": "MIT",
"repository": "ijkml/nu-ma",
"repository": "ijkml/nuxima",
"exports": {
".": {
"types": "./dist/types.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nu-ma-playground",
"name": "nuxima-playground",
"type": "module",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { ModuleOptions } from './types';

export default defineNuxtModule<ModuleOptions>({
meta: {
name: 'nu-ma',
name: 'nuxima',
configKey: 'umami',
},

Expand Down

0 comments on commit 38c486d

Please sign in to comment.