dm-tools
Version:
Dev Mentor Project Creator Tools
75 lines (49 loc) • 1.3 kB
Markdown
# How to build and test cli locally
## How to test the NPM package
Before publishing the NPM package, do a local test:
1. Check dm-tools is not install globally already.
1. Remove existing dm-tools install.
1. Run "npm run npm", this will build and link the package.
1. Test "dm" is working as expected.
1. Run "npm run npm:unlink" to remove dm-tools.
How to check in dm-tool is installed globally.
```sh
npm -g ls
pnpm -g ls
```
How to remove globally install npm package:
```
npm -g uninstall dm-tools
pnpm -g uninstall dm-tools
```
## Building the package for publishing
Update the version number for the CLI in:
1. README.md
1. data-types.ts
1. package.json
1. package.json.t
Next build the project locally, this will also link it globally to make it avaliable under node_modules.
After the build the dm binary will be available to use. It doesn't need to be installed.
```sh
npm run build
```
## Alternative
Finally create a zipped package for testing, from the project root folder type:
```sh
npm pack
npm i -g ./dm-tools-0.4.1.tgz
```
## Update project NPM modules
From the project root folder, type:
```sh
./npm-up.sh
```
## Update templates NPM modules
From the project root folder, type:
```sh
./update-templates.sh
```
## Publish to NPM
```sh
./publish-npm.sh
```