@open-wc/semantic-dom-diff
Advanced tools
Comparing version 0.7.7 to 0.7.8
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.7.8](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/compare/@open-wc/semantic-dom-diff@0.7.7...@open-wc/semantic-dom-diff@0.7.8) (2019-02-02) | ||
### Bug Fixes | ||
* unify npm readme header for all open-wc packages ([1bac939](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/commit/1bac939)) | ||
## [0.7.7](https://github.com/open-wc/open-wc/tree/master/packages/semantic-dom-diff/compare/@open-wc/semantic-dom-diff@0.7.6...@open-wc/semantic-dom-diff@0.7.7) (2019-02-02) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@open-wc/semantic-dom-diff", | ||
"version": "0.7.7", | ||
"version": "0.7.8", | ||
"description": "To compare dom and shadow dom trees. Part of open-wc recommendations", | ||
@@ -17,3 +17,4 @@ "author": "open-wc", | ||
"test:es5": "karma start karma.es5.config.js", | ||
"test:es5:watch": "karma start karma.es5.config.js --auto-watch=true --single-run=false" | ||
"test:es5:watch": "karma start karma.es5.config.js --auto-watch=true --single-run=false", | ||
"prepublishOnly": "../../scripts/insert-header.js" | ||
}, | ||
@@ -27,9 +28,9 @@ "dependencies": { | ||
"@bundled-es-modules/chai": "^4.2.0", | ||
"@open-wc/testing-karma": "^0.4.8", | ||
"@open-wc/testing-karma-bs": "^0.2.8", | ||
"@open-wc/testing-wallaby": "^0.1.8", | ||
"@open-wc/testing-karma": "^0.4.9", | ||
"@open-wc/testing-karma-bs": "^0.2.9", | ||
"@open-wc/testing-wallaby": "^0.1.9", | ||
"mocha": "^5.0.0", | ||
"webpack-merge": "^4.1.5" | ||
}, | ||
"gitHead": "83b3d843759b32612df498b55087d2b5418487b4" | ||
"gitHead": "d32e8443a74121f4fbcb775669deab80633b8fd3" | ||
} |
# Semantic Dom Diff | ||
> Part of Open Web Component Recommendation [open-wc](https://github.com/open-wc/open-wc/) | ||
> Part of [Open Web Components](https://github.com/open-wc/open-wc/) | ||
We want to provide a good set of default on how to facilitate your web component. | ||
Open Web Components provides a set of defaults, recommendations and tools to help facilitate your web component project. Our recommendations include: developing, linting, testing, building, tooling, demoing, publishing and automating. | ||
@@ -31,1 +31,13 @@ [![CircleCI](https://circleci.com/gh/open-wc/open-wc.svg?style=shield)](https://circleci.com/gh/open-wc/open-wc) | ||
``` | ||
<script> | ||
export default { | ||
mounted() { | ||
const editLink = document.querySelector('.edit-link a'); | ||
if (editLink) { | ||
const url = editLink.href; | ||
editLink.href = url.substr(0, url.indexOf('/master/')) + '/master/packages/semantic-dom-diff/README.md'; | ||
} | ||
} | ||
} | ||
</script> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15373
43