@verii/error-aggregation
v1.2.1
Published
Aggregation of errors
Readme
Introduction
The package contains the minimum starting point, of what defines a package for us.
New Package Creation Instructions
Steps
This directory should be copied and renamed to the package name. The
"name"field in thepackage.jsonshould be updated to match the directory name, prefixed by@veriias seen by thetemplate-packagename:"@verii/template-package"A description should be added in the
"description"field in thepackage.jsonThis
README.mdshould be cleared and used for relevant information in the new package.
Some points to take note of:
Packages are published, but local development should consume workspace packages through pnpm workspace dependencies:
pnpm --filter [CONSUMING-PACKAGE-NAME] add [CONSUMED-PACKAGE-NAME]@workspace:*So if you want
did-docspackage to use thecryptopackage, you would do:pnpm --filter @verii/did-docs add @verii/crypto@workspace:*Packages uses standard structure, of
srcdirectory, and thentestdirectory for corresponding testsTests can be run from
package.jsonscriptTests will be automatically included in global test suite and run in CI
