diff --git a/.npmignore b/.npmignore index 69db875..719a610 100644 --- a/.npmignore +++ b/.npmignore @@ -2,9 +2,10 @@ .github node_modules test +__tests__ src coverage .eslintcache .eslintrc.cjs .gitignore -tsconfig.json \ No newline at end of file +tsconfig.json diff --git a/README.md b/README.md index 036c1d4..7570d8f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Utility for handling expectations setup, teardown and other action on [MockServe ## Installation for usage of the library -1. run `npm i -g mockserver-cli`. Global installation is recommended for usage of the library. So it will be accessible from any directory. +1. run `npm i -g @bednarik_radek/mockserver-cli`. Global installation is recommended for usage of the library. So it will be accessible from any directory. 2. run `npx expectations -h` to see the list of available commands. Will display something like this: diff --git a/package-lock.json b/package-lock.json index 9820d98..676dd86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mockserver-cli", - "version": "0.2.1", + "version": "0.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mockserver-cli", - "version": "0.2.1", + "version": "0.2.2", "license": "ISC", "dependencies": { "commander": "^11.1.0", diff --git a/package.json b/package.json index 7c47d55..624ebda 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bednarik_radek/mockserver-cli", - "version": "0.2.1", + "version": "0.2.2", "description": "CLI utility for Mock-server client. Allows for easy creation/deletion of expectations on the Mock-server instance.", "main": "index.js", "type": "module",