Skip to content
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: Rich-Harris/estree-walker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.0
Choose a base ref
...
head repository: Rich-Harris/estree-walker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.1
Choose a head ref
  • 5 commits
  • 5 files changed
  • 3 contributors

Commits on Jan 29, 2021

  1. remove pnpm lockfile

    Rich-Harris committed Jan 29, 2021
    Copy the full SHA
    07e294a View commit details
  2. Copy the full SHA
    1c553d0 View commit details

Commits on Dec 20, 2021

  1. Export package.json

    benmccann authored Dec 20, 2021
    Copy the full SHA
    dec9679 View commit details
  2. Merge pull request #30 from benmccann/patch-1

    Export package.json
    Rich-Harris authored Dec 20, 2021
    Copy the full SHA
    fc33e51 View commit details
  3. -> v3.0.1

    Rich-Harris committed Dec 20, 2021
    Copy the full SHA
    cb7de3e View commit details
Showing with 118 additions and 77 deletions.
  1. +4 −0 CHANGELOG.md
  2. +109 −2 package-lock.json
  3. +5 −2 package.json
  4. +0 −72 pnpm-lock.yaml
  5. +0 −1 src/package.json
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# changelog

## 3.0.1

* Add `package.json` to `exports`

## 3.0.0

* Remove CommonJS vestiges
111 changes: 109 additions & 2 deletions package-lock.json

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

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "estree-walker",
"description": "Traverse an ESTree-compliant AST",
"version": "3.0.0",
"version": "3.0.1",
"private": false,
"author": "Rich Harris",
"license": "MIT",
@@ -12,7 +12,10 @@
"type": "module",
"module": "./src/index.js",
"exports": {
"import": "./src/index.js"
"./package.json": "./package.json",
".": {
"import": "./src/index.js"
}
},
"types": "types/index.d.ts",
"scripts": {
72 changes: 0 additions & 72 deletions pnpm-lock.yaml

This file was deleted.

1 change: 0 additions & 1 deletion src/package.json

This file was deleted.