@houseofmaverix/ui
v0.0.5
Published
Maverix UI for Nuxt projects.
Downloads
1
Readme
@houseofmaverix/ui
UI package for Maverix Nuxt projects.
Features
- ⛰ Foo
- 🚠 Bar
- 🌲 Baz
Quick Setup
- Add
@houseofmaverix/ui
dependency to your project
# Using pnpm
pnpm add -D @houseofmaverix/ui
# Using yarn
yarn add --dev @houseofmaverix/ui
# Using npm
npm install --save-dev @houseofmaverix/ui
- Add
@houseofmaverix/ui
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
[
'@houseofmaverix/ui',
{
nuxtPublicSiteUrl: 'https://localhost:3000',
websiteFolder: 'website',
cloudinaryCloudName: 'bergenske',
defaultLang: 'no',
},
],
// Other modules
],
})
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