Skip to content
This repository was archived by the owner on May 4, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: npm/read-package-json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e78afd6d3ddbee9f2624d3b150b4ac65e5292d3e
Choose a base ref
...
head repository: npm/read-package-json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9f7049d4879a52a04973dde2ce1d71f81c723996
Choose a head ref
  • 10 commits
  • 7 files changed
  • 2 contributors

Commits on Aug 20, 2020

  1. fix: even better json errors, remove graceful-fs

    The fs should be gracefulified at the root app level, not necessary to
    use it here in a library module.
    
    Also, use the even better json errors, which also allows for formatting
    preservation.
    isaacs committed Aug 20, 2020
    Copy the full SHA
    fdbf082 View commit details
  2. chore(release): 2.1.2

    isaacs committed Aug 20, 2020
    Copy the full SHA
    10175d8 View commit details

Commits on Oct 13, 2020

  1. Copy the full SHA
    7595d70 View commit details
  2. Copy the full SHA
    78add03 View commit details
  3. Copy the full SHA
    fb3ceae View commit details
  4. globa@7.1.6

    darcyclarke committed Oct 13, 2020
    Copy the full SHA
    b3a8831 View commit details
  5. Copy the full SHA
    36b7ef7 View commit details
  6. Copy the full SHA
    eef46fa View commit details
  7. Copy the full SHA
    19d9fbe View commit details
  8. chore(release): 3.0.0

    darcyclarke committed Oct 13, 2020
    Copy the full SHA
    9f7049d View commit details
Showing with 12,966 additions and 2,033 deletions.
  1. +2 −3 .travis.yml
  2. +20 −0 CHANGELOG.md
  3. +12,934 −2,014 package-lock.json
  4. +7 −7 package.json
  5. +2 −7 read-json.js
  6. +0 −1 test/basic.js
  7. +1 −1 test/helpful.js
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: node_js
node_js:
- "10"
- "8"
- "6"
- "11"
- "12"
- "14"
sudo: false
before_install:
- npm install -g npm@latest
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.0.0"></a>
# [3.0.0](https://github.com/npm/read-package-json/compare/v2.1.2...v3.0.0) (2020-10-13)


### Bug Fixes

* check-in updated lockfile ([19d9fbe](https://github.com/npm/read-package-json/commit/19d9fbe))



<a name="2.1.2"></a>
## [2.1.2](https://github.com/npm/read-package-json/compare/v2.1.1...v2.1.2) (2020-08-20)


### Bug Fixes

* even better json errors, remove graceful-fs ([fdbf082](https://github.com/npm/read-package-json/commit/fdbf082))



<a name="2.1.1"></a>
## [2.1.1](https://github.com/npm/read-package-json/compare/v2.1.0...v2.1.1) (2019-12-09)

Loading