@granello-dev/granello-nuxt-utils
v0.0.4
Published
Componenti e utilità per progetti Nuxt di Studio il Granello
Downloads
12
Readme
Granello Nuxt Utils
Componenti e utilità per progetti di Studio il Granello for doing amazing things.
Quick Setup
- Add
@granello-dev/granello-nuxt-utils
dependency to your project
# Using pnpm
pnpm add -D @granello-dev/granello-nuxt-utils
# Using yarn
yarn add --dev @granello-dev/granello-nuxt-utils
# Using npm
npm install --save-dev @granello-dev/granello-nuxt-utils
- Add
@granello-dev/granello-nuxt-utils
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@granello-dev/granello-nuxt-utils'
]
})
That's it! You can now use Granello Nuxt Utils in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release