@danhnguyenasnet/shared-core
v1.0.5
Published
Shared core utilities consumed by multiple applications. The repository is intentionally lightweight so projects can pull it in as a git submodule or an npm/packaged dependency.
Downloads
49
Readme
Lastcountry Shared Core
Shared core utilities consumed by multiple applications. The repository is intentionally lightweight so projects can pull it in as a git submodule or an npm/packaged dependency.
Getting Started
- Clone the repo:
git clone [email protected]:lastcountry/shared-core.git - Install dependencies (adjust to your package manager/tooling):
pnpm install - Run tests before pushing changes:
pnpm test
Development Guidelines
- Favor small, pure helper functions that are easy to reuse and test.
- Keep module APIs stable; bump the version if you introduce breaking changes.
- Pair each exported helper with at least one unit test.
- Document new utilities inside this README so downstream teams know how to consume them.
Publish Package
- Build package
pnpm run build- Login to npm
pnpm login- Publish new version
pnpm version patch
pnpm publish