abode-assets-package
v0.1.1
Published
Isolated Package to host assets e.g SVGs
Downloads
67
Readme
Template example for creating npm packages using vite
Folder structure
📂package-name
├── 📁src
│ ├── 📁lib
│ └── 📄index.ts
├── 📄.gitignore
├── 📄package.json
└── 📄vite.config.js
Installation
npm i abode-assets-package # Instalation
Development
Summary of Steps:
1. Make and test your changes.
2. Commit changes to Git.
3. Run version-select to bump the version.
4. Build the package.
5. Push the changes to the repository.
5. Publish the new version to the package registry.
6. Tag the version in Git.
7. Update the changelog.
npm run build # Package build
npm run version-select
git add .
git commit -m "commit message"
git tag [tag-version]
git push origin [tag-version]
npm run version