Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

vlt-workspace-example

Example vlt monorepo with multiple publishable packages.

Packages

  • @YOUR-ACCOUNT/utils — Utility functions
  • @YOUR-ACCOUNT/greeting — Greeting utilities

Setup

  1. Update @YOUR-ACCOUNT in vlt.json and all package.json files with your account slug
  2. Configure authentication:
    vlt login --registry=https://registry.vlt.io/YOUR-ACCOUNT/main/
  3. Install dependencies:
    vlt install
  4. Build packages:
    vlt build

Publishing

To publish all packages:

vlt publish --recursive

To publish a specific package:

cd packages/greeting
vlt publish

See the vlt publishing guide for more details.