diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6a35c..51fc900 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # main (unreleased) -- initial commit +# 0.1.1 + - [[bugfix]: specify depth in npm ls to avoid errors from uninstalled peerDeps](https://github.com/ombulabs/depngn/pull/1) - [[feature]: refactor and disable logging for standalone package](https://github.com/ombulabs/depngn/pull/2) - [[feature]: rever logging change](https://github.com/ombulabs/depngn/pull/3) + +# 0.1.0 + +- intial commit \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9801d9b..9b8989b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ ## Getting Started ```bash -git clone git@github.com:ombulabs/depngn.git +git clone git@github.com:upgradejs/depngn.git cd depngn npm install ``` diff --git a/package-lock.json b/package-lock.json index 32dfe8d..1e909c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "depngn", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index f7224a7..b061bf2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "depngn", - "version": "0.1.0", + "version": "0.1.1", "description": "Determine the compatibility of your packages with a given Node version", "type": "module", "main": "./dist/index.cjs", @@ -14,6 +14,10 @@ "bin": { "depngn": "bin/depngn.cjs" }, + "files": [ + "dist", + "bin" + ], "scripts": { "dev": "node src/index", "build": "rimraf dist && tsc && rollup -c rollup.config.js",