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.3
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.4
Choose a head ref
  • 9 commits
  • 8 files changed
  • 4 contributors

Commits on Jun 16, 2022

  1. chore(deps): update actions/checkout action to v3 (#48)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 16, 2022
    Copy the full SHA
    422f238 View commit details
  2. chore(deps): update all non-major dependencies (#47)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 16, 2022
    Copy the full SHA
    82fac7c View commit details
  3. chore(deps): update codecov/codecov-action action to v3 (#52)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 16, 2022
    Copy the full SHA
    7a280ab View commit details
  4. chore(deps): update actions/setup-node action to v3 (#51)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 16, 2022
    Copy the full SHA
    6c751a5 View commit details

Commits on Jun 19, 2022

  1. chore(deps): update pnpm to v6.32.23 (#50)

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

Commits on Jun 29, 2022

  1. fix(findExports): filtering for named exports (#55)

    * fix(findExports): filtering for named exports
    
    * chore: update tests
    
    * chore: update tests
    antfu authored Jun 29, 2022
    Copy the full SHA
    df908fd View commit details
  2. chore(deps): update all non-major dependencies (#54)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 29, 2022
    Copy the full SHA
    83e976f View commit details
  3. Copy the full SHA
    896c8a7 View commit details
  4. chore(release): 0.5.4

    pi0 committed Jun 29, 2022
    Copy the full SHA
    a11072c View commit details
Showing with 516 additions and 426 deletions.
  1. +3 −3 .github/workflows/ci.yml
  2. +8 −0 CHANGELOG.md
  3. +4 −4 package.json
  4. +464 −391 pnpm-lock.yaml
  5. +1 −1 src/analyze.ts
  6. +1 −1 src/syntax.ts
  7. +34 −26 test/exports.test.ts
  8. +1 −0 test/syntax.test.ts
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,14 +12,14 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm vitest --coverage
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
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.4](https://github.com/unjs/mlly/compare/v0.5.3...v0.5.4) (2022-06-29)


### Bug Fixes

* **detectSyntax:** detect `export class` as esm syntax ([896c8a7](https://github.com/unjs/mlly/commit/896c8a7dd087d041ffb29a00065a4f71d62ed249))
* **findExports:** filtering for named exports ([#55](https://github.com/unjs/mlly/issues/55)) ([df908fd](https://github.com/unjs/mlly/commit/df908fd509d7357265038b5fec414c41bd3ebd67))

### [0.5.3](https://github.com/unjs/mlly/compare/v0.5.2...v0.5.3) (2022-06-16)


8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mlly",
"version": "0.5.3",
"version": "0.5.4",
"description": "Missing ECMAScript module utils for Node.js",
"repository": "unjs/mlly",
"license": "MIT",
@@ -24,8 +24,8 @@
"test": "pnpm lint && vitest run"
},
"dependencies": {
"pathe": "^0.2.0",
"pkg-types": "^0.3.2"
"pathe": "^0.3.1",
"pkg-types": "^0.3.3"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
@@ -37,5 +37,5 @@
"unbuild": "latest",
"vitest": "latest"
},
"packageManager": "pnpm@6.32.3"
"packageManager": "pnpm@6.32.24"
}
Loading