Socket
Socket
Sign inDemoInstall

next-transpile-modules

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-transpile-modules - npm Package Compare versions

Comparing version 7.2.0 to 7.3.0

2

package.json
{
"name": "next-transpile-modules",
"version": "7.2.0",
"version": "7.3.0",
"license": "MIT",

@@ -5,0 +5,0 @@ "author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",

@@ -5,3 +5,3 @@ export = withTmInitializer;

* @param {string[]} modules
* @param {{resolveSymlinks?: boolean, debug?: boolean, __unstable_matcher: (path: string) => boolean}} options
* @param {{resolveSymlinks?: boolean, debug?: boolean, __unstable_matcher?: (path: string) => boolean}} options
*/

@@ -11,3 +11,3 @@ declare function withTmInitializer(modules?: string[], options?: {

debug?: boolean;
__unstable_matcher: (path: string) => boolean;
__unstable_matcher?: (path: string) => boolean;
}): (nextConfig?: {}) => {};

@@ -84,3 +84,3 @@ /**

* @param {string[]} modules
* @param {{resolveSymlinks?: boolean, debug?: boolean, __unstable_matcher: (path: string) => boolean}} options
* @param {{resolveSymlinks?: boolean, debug?: boolean, __unstable_matcher?: (path: string) => boolean}} options
*/

@@ -92,3 +92,3 @@ const withTmInitializer = (modules = [], options = {}) => {

const resolveSymlinks = 'resolveSymlinks' in options ? options.resolveSymlinks : true;
const isWebpack5 = (nextConfig.future && nextConfig.future.webpack5) || false;
const isWebpack5 = nextConfig.webpack5 || (nextConfig.future && nextConfig.future.webpack5) || false;
const debug = options.debug || false;

@@ -95,0 +95,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