@finema/core
v1.4.216
Published
[✨ Release Notes](/CHANGELOG.md)
Downloads
512
Readme
@finema/core Nuxt Module
Starter template
https://gitlab.finema.co/finema/nuxt3-template-with-uikit
Remark
- Temporary use resolutions for vue 3.3.13 instead of ^3.4.0 due to this issue and planned to be fixed in the next vue 3.5 version.
Quick Setup
- Add
@finema/core
dependency to your project
# Using pnpm
pnpm add -D @finema/core
# Using yarn
yarn add --dev @finema/core
- Add
@finema/core
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@finema/core'
]
})
That's it! You can now use @finema/core in your Nuxt app ✨
Development
# Install dependencies
pnpm install
# Generate type stubs
pnpm dev:prepare
# Develop with the playground
pnpm dev
# Build the playground
pnpm dev:build
# Run ESLint
pnpm lint
# Run Vitest
pnpm test
pnpm test:watch
# Release new version
pnpm release