less-openui5
Advanced tools
Comparing version 0.8.0 to 0.8.1
@@ -5,4 +5,10 @@ # Changelog | ||
A list of unreleased changes can be found [here](https://github.com/SAP/less-openui5/compare/v0.8.0...HEAD). | ||
A list of unreleased changes can be found [here](https://github.com/SAP/less-openui5/compare/v0.8.1...HEAD). | ||
<a name="v0.8.1"></a> | ||
## [v0.8.1] - 2019-12-02 | ||
### Bug Fixes | ||
- Improve rule diffing algorithm ([#104](https://github.com/SAP/less-openui5/issues/104)) [`2527189`](https://github.com/SAP/less-openui5/commit/252718912861d2edde2041729a106fb3e0a6316b) | ||
<a name="v0.8.0"></a> | ||
@@ -27,2 +33,3 @@ ## [v0.8.0] - 2019-11-18 | ||
[v0.8.1]: https://github.com/SAP/less-openui5/compare/v0.8.0...v0.8.1 | ||
[v0.8.0]: https://github.com/SAP/less-openui5/compare/0.7.0...v0.8.0 | ||
@@ -29,0 +36,0 @@ [0.7.0]: https://github.com/SAP/less-openui5/compare/0.6.0...0.7.0 |
@@ -83,3 +83,3 @@ // Copyright 2019 SAP SE. | ||
// Add all rules with different selector to stack and check for next one | ||
while (!selectorEquals(oBaseNode.selectors, oCompareNode.selectors)) { | ||
while (oCompareNode && (oCompareNode.type !== "rule" || !selectorEquals(oBaseNode.selectors, oCompareNode.selectors))) { | ||
this.oStack.stylesheet.rules.push(oCompareNode); | ||
@@ -86,0 +86,0 @@ iCompareNode++; |
{ | ||
"name": "less-openui5", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "Build OpenUI5 themes with Less.js", | ||
@@ -43,3 +43,3 @@ "scripts": { | ||
"devDependencies": { | ||
"eslint": "^6.6.0", | ||
"eslint": "^6.7.2", | ||
"eslint-config-google": "^0.14.0", | ||
@@ -46,0 +46,0 @@ "graceful-fs": "^4.2.3", |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
351957
2