@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

  1. Clone the repo:
    git clone [email protected]:lastcountry/shared-core.git
  2. Install dependencies (adjust to your package manager/tooling):
    pnpm install
  3. 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

  1. Build package
pnpm run build
  1. Login to npm
pnpm login
  1. Publish new version
pnpm version patch
pnpm publish