@boost/common
Advanced tools
Comparing version 2.4.0 to 2.4.1
@@ -6,2 +6,14 @@ # Change Log | ||
### 2.4.1 - 2020-11-29 | ||
#### 📦 Dependencies | ||
- Update dev dependencies. Migrate to TypeScript v4.1. ([578d5e3](https://github.com/milesj/boost/commit/578d5e3)) | ||
**Note:** Version bump only for package @boost/common | ||
## 2.4.0 - 2020-11-11 | ||
@@ -8,0 +20,0 @@ |
@@ -178,3 +178,5 @@ 'use strict'; | ||
}; | ||
this.sortByDependedOn(this.getRootNodes()).forEach(node => resolve(node, trunk)); // Some nodes are missing, so they must be a cycle | ||
this.sortByDependedOn(this.getRootNodes()).forEach(node => { | ||
resolve(node, trunk); | ||
}); // Some nodes are missing, so they must be a cycle | ||
@@ -240,6 +242,10 @@ if (seen.size !== this.nodes.size) { | ||
cycle.add(node); | ||
node.dependents.forEach(child => dig(child, new Set(cycle))); | ||
node.dependents.forEach(child => { | ||
dig(child, new Set(cycle)); | ||
}); | ||
}; | ||
this.nodes.forEach(node => dig(node, new Set())); | ||
this.nodes.forEach(node => { | ||
dig(node, new Set()); | ||
}); | ||
} | ||
@@ -633,3 +639,3 @@ /** | ||
if ((_value = value) == null ? void 0 : _value.__esModule) { | ||
if ((_value = value) != null && _value.__esModule) { | ||
value = value.default; | ||
@@ -636,0 +642,0 @@ } |
{ | ||
"name": "@boost/common", | ||
"version": "2.4.0", | ||
"version": "2.4.1", | ||
"release": "1594765247526", | ||
@@ -24,3 +24,3 @@ "description": "A collection of common utilities, classes, and helpers.", | ||
"@boost/decorators": "^2.0.0", | ||
"@boost/internal": "^2.1.1", | ||
"@boost/internal": "^2.1.2", | ||
"fast-glob": "^3.2.4", | ||
@@ -33,3 +33,3 @@ "json5": "^2.1.3", | ||
"devDependencies": { | ||
"@boost/test-utils": "^2.1.0" | ||
"@boost/test-utils": "^2.1.1" | ||
}, | ||
@@ -40,3 +40,3 @@ "funding": { | ||
}, | ||
"gitHead": "3dcb3a7b6e7ee137b308f4d47e03b3a75f9f9b91" | ||
"gitHead": "5f7e4dd672542eef29f55ec17300600e5fcd6a92" | ||
} |
Sorry, the diff of this file is not supported yet
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
71643
1251
Updated@boost/internal@^2.1.2