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

@nestjs/core

Package Overview
Dependencies
Maintainers
1
Versions
376
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestjs/core - npm Package Compare versions

Comparing version 3.1.0 to 3.1.1

2

package.json
{
"name": "@nestjs/core",
"version": "3.1.0",
"version": "3.1.1",
"description": "Nest - modern, fast, powerful node.js web framework (@core)",

@@ -5,0 +5,0 @@ "author": "Kamil Mysliwiec",

@@ -17,3 +17,3 @@ import 'reflect-metadata';

private reflectControllers(module, token);
private reflectDynamicMetadata(route, token);
private reflectDynamicMetadata(obj, token);
private reflectExports(module, token);

@@ -20,0 +20,0 @@ private reflectGatewaysMiddlewares(component, token);

@@ -56,5 +56,8 @@ "use strict";

}
reflectDynamicMetadata(route, token) {
this.reflectGuards(route, token);
this.reflectInterceptors(route, token);
reflectDynamicMetadata(obj, token) {
if (!obj.prototype) {
return;
}
this.reflectGuards(obj, token);
this.reflectInterceptors(obj, token);
}

@@ -61,0 +64,0 @@ reflectExports(module, token) {

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