SAP / ui5-tooling-extensions

A repository offering extensions of UI5 Tooling
Apache License 2.0
8 stars 2 forks source link

build(deps-dev): bump esmock from 2.3.8 to 2.4.1 #153

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps esmock from 2.3.8 to 2.4.1.

Release notes

Sourced from esmock's releases.

detect null and undefined loader-returned sources

Detects null AND undefined loader-returned source definitions

diff --git a/src/esmockLoader.js b/src/esmockLoader.js
index 69dedd4..e835ec3 100644
--- a/src/esmockLoader.js
+++ b/src/esmockLoader.js
@@ -145,7 +145,8 @@ const load = async (url, context, nextLoad) => {
       if (!/^(commonjs|module)$/.test(nextLoadRes.format))
         return nextLoad(url, context)
  •  const source = nextLoadRes.source === null
    
  •  // nextLoadRes.source sometimes 'undefined' and other times 'null' :(
    
  •  const source = nextLoadRes.source === null || nextLoadRes.source === undefined
       ? String(await fs.readFile(new URL(url)))
       : String(nextLoadRes.source)
     const hbang = (source.match(hashbangRe) || [])[0] || ''
    

node v20.6 solutions

node v20.6 caused some issues. The primary issue was that the newest import.meta.resolve defined by node has significantly and suddenly changed. The newer import.meta.resolve is less useful and no longer supports the parent param as in the call import.meta.resolve(moduleId, parent),

Changelog

Sourced from esmock's changelog.

changelog

... (truncated)

Commits
  • 2fc016c Merge pull request #238 from iambumblehead/resolve-failing-cjs-import-mock-tests
  • 289cb62 replace regexp with more explicit test
  • b0c3280 use memoized regexps
  • c4f26a9 update link at changelog
  • 1fe29ea detect both undefined and null loader-returned sources
  • e3be36a update test fles
  • 221b37e Merge pull request #237 from iambumblehead/remove-import.meta.resolve
  • e11b6de update CHANGELOG and increment version
  • eac045a comment-out failing test
  • 0c3f18a restore test file to master state
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)