0.0.4 • Published 4 months ago

@granello-dev/granello-nuxt-utils v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Granello Nuxt Utils

npm version npm downloads License Nuxt

Componenti e utilità per progetti di Studio il Granello for doing amazing things.

Quick Setup

  1. 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
  1. Add @granello-dev/granello-nuxt-utils to the modules section of nuxt.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