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

@nestjs/schematics

Package Overview
Dependencies
Maintainers
4
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestjs/schematics - npm Package Compare versions

Comparing version 6.9.0 to 6.9.1

11

dist/lib/application/application.factory.js

@@ -9,3 +9,5 @@ "use strict";

options.name = core_1.strings.dasherize(options.name);
const path = options.directory || options.name;
const path = !options.directory || options.directory === 'undefined'
? options.name
: options.directory;
options = transform(options);

@@ -24,5 +26,6 @@ return schematics_1.mergeWith(generate(options, path));

target.version = !!target.version ? target.version : defaults_1.DEFAULT_VERSION;
target.packageManager = !!target.packageManager
? target.packageManager
: 'npm';
target.packageManager =
!target.packageManager || target.packageManager === 'undefined'
? 'npm'
: target.packageManager;
target.dependencies = !!target.dependencies ? target.dependencies : '';

@@ -29,0 +32,0 @@ target.devDependencies = !!target.devDependencies

{
"name": "@nestjs/schematics",
"version": "6.9.0",
"version": "6.9.1",
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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