talking-heads-core-js
v0.0.3
Published
## Prerequisites
Readme
Example: Typescript utility library
Prerequisites
Tools
You will need the following things properly installed on your computer.
PNPM install
- If you have installed latest v16.x or greater node version in your system, then enable the pnpm using the below cmd
corepack enable
corepack prepare pnpm@latest --activate- If you are using lower version of node in your local system then check this page for additional installation methods https://pnpm.io/installation
Usage
Install packages
pnpm installTo start the library in the dev mode
pnpm devand visit http://localhost:5173
To build the library
pnpm buildTo run the linter
pnpm lintTo format the files
pnpm formatTo run all the tests
pnpm testTo run all the tests with coverage
pnpm test:coverageTo run a single test matching the pattern
pnpm test -- -t 'add'We can use any options provided by jest after the '--'. This way the arguments will be passed to the jest executor.
