Socket
Socket
Sign inDemoInstall

@open-wc/semantic-dom-diff

Package Overview
Dependencies
Maintainers
2
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open-wc/semantic-dom-diff - npm Package Compare versions

Comparing version 0.4.3 to 0.5.0

index.d.ts

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [0.5.0](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/compare/@open-wc/semantic-dom-diff@0.4.3...@open-wc/semantic-dom-diff@0.5.0) (2018-12-11)
### Features
* add typescript type declaration files ([f5cb243](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/commit/f5cb243))
## [0.4.3](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/compare/@open-wc/semantic-dom-diff@0.4.2...@open-wc/semantic-dom-diff@0.4.3) (2018-12-02)

@@ -8,0 +19,0 @@

2

index.js

@@ -1,1 +0,1 @@

export { getSemanticDomDiff } from './src/get-dom-diff';
export { getSemanticDomDiff } from './src/get-dom-diff.js';
{
"name": "@open-wc/semantic-dom-diff",
"version": "0.4.3",
"version": "0.5.0",
"description": "To compare dom and shadow dom trees. Part of open-wc recommendations",

@@ -18,3 +18,4 @@ "author": "open-wc",

"@bundled-es-modules/deep-diff": "^1.0.2-rc.1",
"@bundled-es-modules/parse5": "^5.1.0"
"@bundled-es-modules/parse5": "^5.1.0",
"@types/parse5": "^5.0.0"
},

@@ -28,3 +29,3 @@ "devDependencies": {

},
"gitHead": "e8c54951d26e55ee6b93ccc03110e8710e2814aa"
"gitHead": "e04c1ee29c25e8a78e20850104cecee9bcb50c91"
}

@@ -1,2 +0,2 @@

import { isParentNode, isElement } from './parse5-utils';
import { isParentNode, isElement } from './parse5-utils.js';

@@ -3,0 +3,0 @@ /**

@@ -1,2 +0,2 @@

import { isElement, isTextNode } from './parse5-utils';
import { isElement, isTextNode } from './parse5-utils.js';

@@ -3,0 +3,0 @@ export const isAttribute = arg => arg && 'name' in arg && 'value' in arg;

@@ -1,2 +0,2 @@

import { isParentNode, isElement } from './parse5-utils';
import { isParentNode, isElement } from './parse5-utils.js';

@@ -3,0 +3,0 @@ /**

import { parseFragment, serialize } from '@bundled-es-modules/parse5';
import { deepDiff } from '@bundled-es-modules/deep-diff';
import { sanitizeHtmlString } from './sanitize-html-string';
import { normalizeAST } from './normalize-ast';
import { getDiffMessage } from './get-diff-message';
import { findDiffedObject } from './find-diffed-object';
import { getDiffPath } from './get-diff-path';
import { sanitizeHtmlString } from './sanitize-html-string.js';
import { normalizeAST } from './normalize-ast.js';
import { getDiffMessage } from './get-diff-message.js';
import { findDiffedObject } from './find-diffed-object.js';
import { getDiffPath } from './get-diff-path.js';

@@ -10,0 +10,0 @@ /**

/* eslint-disable no-param-reassign */
import { isElement, isParentNode } from './parse5-utils';
import { isElement, isParentNode } from './parse5-utils.js';

@@ -4,0 +4,0 @@ const defaultIgnoresTags = ['style', 'script', '#comment'];

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