a simple nuxt ui library focused on doing as much as possible with css
- 💇♀️ mostly uses css to do things
- 👜 relatively lightweight
- 👁️🗨️ customizable
- Add
@exakt/ui
dependency to your project
# Using pnpm
pnpm add -D @exakt/ui
# Using yarn
yarn add --dev @exakt/ui
# Using npm
npm install --save-dev @exakt/ui
- Add
@exakt/ui
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@exakt/ui'
]
})
That's it! You can now use exakt in your Nuxt app ✨
Because mkdist (and subsequently nuxt-module-builder) don't yet support not compiling SASS files, you'll need to use yarn link
to substitute mkdist with the force-scss-off branch of https://github.com/wd-4000/mkdist
# 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