Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@noma/helper-modules

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@noma/helper-modules - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

package.json
{
"name": "@noma/helper-modules",
"version": "1.1.0",
"version": "1.1.1",
"description": "",

@@ -33,3 +33,3 @@ "main": "./src/index.js",

"type": "module",
"gitHead": "e12031f0ce2e9237f084f63b252f4caff5b2c597"
"gitHead": "2c4d138ad717eac089214f486d49d57add3e0bd6"
}

@@ -12,3 +12,16 @@ import resolve from 'resolve'

return import(href)
return import(href).catch(err => {
if (err instanceof SyntaxError && !err.stack.includes(file)) {
const newErrorWithFilename = new SyntaxError(err.message)
newErrorWithFilename.stack = err.stack.replace(
/^SyntaxError/,
`SyntaxError[ @${file} ]`
)
throw newErrorWithFilename
}
throw err
})
}

@@ -15,0 +28,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc