/smartvui

UI Components for Vue3

Primary LanguageTypeScriptMIT LicenseMIT

SmartVui (@pdanpdan/smartvui)

License: MIT   minzip   github release   jsdelivr hits   npm release   npm downloads  

Project description

Components for Vue3 - Material Design 3.

Docs and examples

Source code, Issues, Discussions

Install

pnpm i @pdanpdan/smartvui

or

yarn add @pdanpdan/smartvui

or

npm install @pdanpdan/smartvui

Development

Install the dependencies

pnpm i

Start development mode (hot-code reloading, error reporting, etc.)

cd dev
pnpm dev
cd ..

Lint the files

pnpm lint

Build for production

cd lib
pnpm build
cd ..

Source code, issues, bug reports, feature requests

SmartVui (smartvui)

Author

License

Copyright © 2023-present Dan Popescu.

This application is distributed under License: MIT, see LICENSE for more information.

Scripts

# Start dev server and rebuild lib on change
cd dev
pnpm dev
cd ..
# Build lib
cd lib
pnpm build
cd ..
# Run unit test
cd lib
pnpm test
cd ..
# Run unit test and display test coverage
cd lib
pnpm coverage
cd ..
# Lint
pnpm lint
# Run vue-tsc for each repo
cd lib
pnpm typecheck
cd ..
# Release your lib by release-it
cd lib
pnpm release
cd ..