Skip to content
This repository was archived by the owner on May 22, 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: netlify/zip-it-and-ship-it
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.7.1
Choose a base ref
...
head repository: netlify/zip-it-and-ship-it
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.7.2
Choose a head ref
  • 4 commits
  • 7 files changed
  • 2 contributors

Commits on Feb 8, 2022

  1. 1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f229016 View commit details
  2. 1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a941003 View commit details
  3. 1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5003df6 View commit details
  4. chore(main): release 5.7.2 (#1009)

    Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
    token-generator-app[bot] authored Feb 8, 2022
    1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0f7246e View commit details
Showing with 402 additions and 200 deletions.
  1. +0 −2 .eslintrc.cjs
  2. +9 −0 CHANGELOG.md
  3. +296 −138 package-lock.json
  4. +2 −2 package.json
  5. +4 −1 src/runtimes/node/bundlers/zisi/resolve.ts
  6. +10 −1 tests/helpers/main.js
  7. +81 −56 tests/main.js
2 changes: 0 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -14,10 +14,8 @@ module.exports = {
files: 'tests/**/*.js',
rules: {
'import/max-dependencies': 'off',
'import/no-dynamic-require': 'off',
'max-lines-per-function': 'off',
'max-statements': 'off',
'node/global-require': 'off',
'no-magic-numbers': 'off',
},
},
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [5.7.2](https://github.com/netlify/zip-it-and-ship-it/compare/v5.7.1...v5.7.2) (2022-02-08)


### Bug Fixes

* upgrade TypeScript ([#972](https://github.com/netlify/zip-it-and-ship-it/issues/972)) ([f229016](https://github.com/netlify/zip-it-and-ship-it/commit/f229016195952c041f3bb3b807733a06a168aa54))
* use `createRequire()` for `require.resolve()` ([#986](https://github.com/netlify/zip-it-and-ship-it/issues/986)) ([a941003](https://github.com/netlify/zip-it-and-ship-it/commit/a941003730f7efa6e00b3ade1cc894f5d67ea54a))
* use dynamic `import()` in tests ([#980](https://github.com/netlify/zip-it-and-ship-it/issues/980)) ([5003df6](https://github.com/netlify/zip-it-and-ship-it/commit/5003df6616ef05f590c67aa1cf5f8599bbeb3688))

### [5.7.1](https://github.com/netlify/zip-it-and-ship-it/compare/v5.7.0...v5.7.1) (2022-02-08)


Loading