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

@ng-doc/add

Package Overview
Dependencies
Maintainers
1
Versions
190
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ng-doc/add - npm Package Compare versions

Comparing version 15.0.0-beta.9 to 15.0.0-beta.10

2

package.json
{
"name": "@ng-doc/add",
"version": "15.0.0-beta.9",
"version": "15.0.0-beta.10",
"type": "commonjs",

@@ -5,0 +5,0 @@ "schematics": "./schematics/collection.json",

@@ -25,4 +25,4 @@ "use strict";

if (buildTarget) {
const tsConfigPath = String(buildTarget.options && buildTarget.options['tsConfig']);
updateTsConfigPaths(tree, tsConfigPath, options.project);
const tsConfigPath = buildTarget.options && buildTarget.options['tsConfig'];
tsConfigPath && updateTsConfigPaths(tree, String(tsConfigPath), options.project);
}

@@ -33,4 +33,4 @@ else {

if (serveTarget) {
const tsConfigPath = String(serveTarget.options && serveTarget.options['tsConfig']);
updateTsConfigPaths(tree, tsConfigPath, options.project);
const tsConfigPath = serveTarget.options && serveTarget.options['tsConfig'];
tsConfigPath && updateTsConfigPaths(tree, String(tsConfigPath), options.project);
}

@@ -56,4 +56,4 @@ else {

if (paths || !ext) {
json.modify(['compilerOptions', 'paths', `${modules_1.GENERATED_PATH}`], `.ng-doc/${projectName}/index.ts`);
json.modify(['compilerOptions', 'paths', `${modules_1.GENERATED_PATH}/*`], `.ng-doc/${projectName}/*`);
json.modify(['compilerOptions', 'paths', `${modules_1.GENERATED_PATH}`], [`.ng-doc/${projectName}/index.ts`]);
json.modify(['compilerOptions', 'paths', `${modules_1.GENERATED_PATH}/*`], [`.ng-doc/${projectName}/*`]);
}

@@ -60,0 +60,0 @@ else if (ext) {

Sorry, the diff of this file is not supported yet

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