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

@angular-architects/ddd

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-architects/ddd - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "@angular-architects/ddd",
"version": "1.0.1",
"version": "1.0.2",
"author": "Manfred Steyer",

@@ -5,0 +5,0 @@ "description": "Nx plugin for structuring a monorepo with domains and layers",

@@ -103,2 +103,8 @@ "use strict";

const appModulePath = `apps/${appFolderName}/src/app/app.module.ts`;
if (options.app) {
const requiredAppModulePath = `apps/${appFolderName}/src/app/app.module.ts`;
if (!host.exists(requiredAppModulePath)) {
throw new Error(`Specified app ${options.app} does not exist: ${requiredAppModulePath} expected!`);
}
}
const domainTemplates = schematics_1.apply(schematics_1.url('./files/forDomain'), [

@@ -105,0 +111,0 @@ filterTemplates(options),

@@ -159,2 +159,9 @@ import { chain, externalSchematic, Rule, Tree, SchematicsException, apply, url, template, move, mergeWith, noop, filter } from '@angular-devkit/schematics';

if (options.app) {
const requiredAppModulePath = `apps/${appFolderName}/src/app/app.module.ts`;
if (!host.exists(requiredAppModulePath)) {
throw new Error(`Specified app ${options.app} does not exist: ${requiredAppModulePath} expected!`);
}
}
const domainTemplates = apply(url('./files/forDomain'), [

@@ -161,0 +168,0 @@ filterTemplates(options),

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