Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pentzzsolt authored Jan 7, 2018
1 parent 92b30b6 commit 19c7571
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.0.1 - 2018-01-07

### Added
- [CHANGELOG.md](CHANGELOG.md) file.

### Fixed
- [Issue #1](../../issues/1).
2 changes: 1 addition & 1 deletion _recursive-map-merge.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@function recursive-map-merge($map1, $map2) {
@if (type-of($map1) == map and type-of($map2) == map) {
@if ((type-of($map1) == map or type-of($map1) == list) and (type-of($map2) == map or type-of($map2) == list)) {
$result: $map1;
@each $key, $value in $map2 {
@if (type-of(map-get($result, $key)) == map and type-of($value) == map) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-recursive-map-merge",
"version": "1.0.0",
"version": "1.0.1",
"description": "A lightweight Sass function that merges multidimensional maps recursively.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 19c7571

Please sign in to comment.