@untool/core
Advanced tools
Comparing version 1.0.0-rc.7 to 1.0.0-rc.8
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.0.0-rc.8](https://github.com/untool/untool/compare/v1.0.0-rc.7...v1.0.0-rc.8) (2018-10-23) | ||
### Bug Fixes | ||
* **core:** ensure mixins will only be added once ([239fd74](https://github.com/untool/untool/commit/239fd74)) | ||
# [1.0.0-rc.7](https://github.com/untool/untool/compare/v1.0.0-rc.6...v1.0.0-rc.7) (2018-10-21) | ||
@@ -8,0 +19,0 @@ |
@@ -42,3 +42,5 @@ 'use strict'; | ||
if (typeMixin) { | ||
result[key] = [...(result[key] || []), typeMixin]; | ||
if (!result[key] || !result[key].includes(typeMixin)) { | ||
result[key] = [...(result[key] || []), typeMixin]; | ||
} | ||
found = true; | ||
@@ -45,0 +47,0 @@ } |
{ | ||
"name": "@untool/core", | ||
"version": "1.0.0-rc.7", | ||
"version": "1.0.0-rc.8", | ||
"description": "untool core", | ||
@@ -34,3 +34,3 @@ "repository": { | ||
}, | ||
"gitHead": "27613b48005f2082dc5b639074d6c3b507354057" | ||
"gitHead": "0228d1ed2aff9e0a6c466f8f273c75cc91090009" | ||
} |
26199
245