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.1.0 to 1.1.1

2

package.json
{
"name": "@angular-architects/ddd",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "author": "Manfred Steyer",

@@ -23,3 +23,4 @@ "use strict";

const text = host.read(filePath).toString();
let rules = JSON.parse(text);
const json = JSON.parse(text);
let rules = json;
if (rules['overrides']) {

@@ -33,3 +34,3 @@ const overrides = rules['overrides'];

update(depConst);
const newText = JSON.stringify(rules, undefined, 2);
const newText = JSON.stringify(json, undefined, 2);
host.overwrite(filePath, newText);

@@ -36,0 +37,0 @@ }

@@ -28,4 +28,4 @@ import { Tree, SchematicContext } from '@angular-devkit/schematics';

const text = host.read(filePath).toString();
let rules = JSON.parse(text);
const json = JSON.parse(text);
let rules = json;
if (rules['overrides']) {

@@ -41,4 +41,4 @@ const overrides = rules['overrides'];

const newText = JSON.stringify(rules, undefined, 2);
const newText = JSON.stringify(json, undefined, 2);
host.overwrite(filePath, newText);
}

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