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: unjs/mlly
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.14
Choose a base ref
...
head repository: unjs/mlly
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.15
Choose a head ref
  • 15 commits
  • 6 files changed
  • 3 contributors

Commits on Aug 23, 2022

  1. chore(deps): update pnpm to v7.9.4 (#73)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 23, 2022
    Copy the full SHA
    39ca22f View commit details

Commits on Aug 24, 2022

  1. chore(deps): update pnpm to v7.9.5 (#74)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 24, 2022
    Copy the full SHA
    7a4a19a View commit details

Commits on Aug 27, 2022

  1. chore(deps): update devdependency typescript to ^4.8.2 (#76)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 27, 2022
    Copy the full SHA
    8e548fa View commit details

Commits on Sep 4, 2022

  1. chore(deps): update all non-major dependencies (#77)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 4, 2022
    Copy the full SHA
    ad337b2 View commit details

Commits on Sep 6, 2022

  1. chore(deps): update all non-major dependencies (#78)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 6, 2022
    Copy the full SHA
    8ff4a4c View commit details
  2. chore(deps): update dependency pathe to ^0.3.7 (#79)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 6, 2022
    Copy the full SHA
    b2e2938 View commit details
  3. chore(deps): update dependency pkg-types to ^0.3.5 (#80)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 6, 2022
    Copy the full SHA
    8610357 View commit details

Commits on Sep 8, 2022

  1. chore(deps): update devdependency typescript to ^4.8.3 (#81)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 8, 2022
    Copy the full SHA
    bcf8b93 View commit details

Commits on Sep 10, 2022

  1. chore(deps): update devdependency @vitest/coverage-c8 to ^0.23.2 (#82)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 10, 2022
    Copy the full SHA
    8053a70 View commit details

Commits on Sep 18, 2022

  1. chore(deps): update devdependency @vitest/coverage-c8 to ^0.23.4 (#83)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 18, 2022
    Copy the full SHA
    16c929a View commit details

Commits on Sep 19, 2022

  1. chore(deps): update pnpm to v7.12.0 (#84)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 19, 2022
    Copy the full SHA
    b6d584e View commit details
  2. chore(deps): update dependency pathe to ^0.3.8 (#85)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 19, 2022
    Copy the full SHA
    554f927 View commit details
  3. Copy the full SHA
    e22ead6 View commit details
  4. fix(isValidNodeImport): check type: module before other detections

    fix issue with `swiper`
    pi0 committed Sep 19, 2022
    Copy the full SHA
    8e866c3 View commit details
  5. chore(release): 0.5.15

    pi0 committed Sep 19, 2022
    Copy the full SHA
    906ab6a View commit details
Showing with 535 additions and 397 deletions.
  1. +8 −0 CHANGELOG.md
  2. +6 −6 package.json
  3. +506 −387 pnpm-lock.yaml
  4. +1 −1 src/analyze.ts
  5. +3 −3 src/syntax.ts
  6. +11 −0 test/exports.test.ts
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,14 @@

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.

### [0.5.15](https://github.com/unjs/mlly/compare/v0.5.14...v0.5.15) (2022-09-19)


### Bug Fixes

* **findExports:** extract multi line named exports ([#75](https://github.com/unjs/mlly/issues/75)) ([e22ead6](https://github.com/unjs/mlly/commit/e22ead6281d00d1248563ceed5f839d4d32637bc))
* **isValidNodeImport:** check `type: module` before other detections ([8e866c3](https://github.com/unjs/mlly/commit/8e866c3459c04163bb59dd56469f8468add899b3))

### [0.5.14](https://github.com/unjs/mlly/compare/v0.5.13...v0.5.14) (2022-08-22)


12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mlly",
"version": "0.5.14",
"version": "0.5.15",
"description": "Missing ECMAScript module utils for Node.js",
"repository": "unjs/mlly",
"license": "MIT",
@@ -25,21 +25,21 @@
},
"dependencies": {
"acorn": "^8.8.0",
"pathe": "^0.3.5",
"pkg-types": "^0.3.4",
"pathe": "^0.3.8",
"pkg-types": "^0.3.5",
"ufo": "^0.8.5"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/node": "latest",
"@vitest/coverage-c8": "^0.22.1",
"@vitest/coverage-c8": "^0.23.4",
"c8": "latest",
"eslint": "latest",
"jiti": "latest",
"standard-version": "latest",
"typescript": "^4.7.4",
"typescript": "^4.8.3",
"unbuild": "latest",
"vitest": "latest"
},
"packageManager": "pnpm@7.9.3"
"packageManager": "pnpm@7.12.0"
}
Loading