Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kindoflew committed Sep 30, 2022
1 parent 70bb5d1 commit a1cc02a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Getting Started

```bash
git clone [email protected]:ombulabs/depngn.git
git clone [email protected]:upgradejs/depngn.git
cd depngn
npm install
```
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit a1cc02a

Please sign in to comment.