Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 821 Bytes

README.md

File metadata and controls

49 lines (35 loc) · 821 Bytes

ts-acme

Provides client and server implementations of ACME (RFC 8555) in TypeScript. It enables you to build solutions that provide complete and robust certificate lifecycle management.

Develop

Lerna

Install

Install Lerna

npm install -g lerna

Install Yarn

npm install -g yarn

Initialization

yarn

Create packages

lerna create name-project

Dependency manage

Install module/project in all projects

lerna add name-module-or-project

Install module/project in one project

lerna add name-module-or-project --scope=@peculiar/acme-client

To remove a module from project, you must delete an entry in the package.json

build only changed packages

lerna run build --since name-branch