@dcrackel/hematournamentui
v1.0.694
Published
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Readme
Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.
Recommended IDE Setup
- VS Code + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
Publishing a Storybook Library to NPM
Follow this guide to publish your Storybook library to NPM, making it available for others to easily npm install.
1. Setup & Prerequisites
Ensure you have an account on npm. If not, you can create one for free. Verify node and npm installations:
Copy code
node -v
npm -v2. Preparing Your Storybook Library
a. Building the Library Compile your library with Vite or your bundler:
vite buildb. Update package.json Ensure the following fields are set:
name: Name of your package. version: Version number. main: Main entry file (e.g., dist/index.js). files: Files to include, e.g., ["dist"].
3. Logging in to NPM
Login to npm (if you haven't already):
npm loginProvide your username, password, and email.
4. Publishing to NPM
a. Default (Private Package) For scoped private packages (@username/project-name):
npm publishb. Public Package For public packages:
npm publish --access=public5. Verifying Your Package
Check on the npm website to verify your package's publication.
Check the registry name
npm get registry6. Installing and Using the Library
To install the library:
npm install your-library-nameUsers can then import and utilize your library's components.
Notes:
Always update the version in package.json before republishing. Ensure only necessary files are bundled to prevent package bloat.
