titon-toolkit 2.1.7 → 2.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b2d0f7f40614941019170a8ce891636fb1cd943
4
- data.tar.gz: 61adf1a115d30c10be87125c3692c1dd3412a6d9
3
+ metadata.gz: 21296ab9e50ec94f5999457f65fe5a6b407c5457
4
+ data.tar.gz: 9747a967f76ef52bed0e54d2baa198270ab2bea1
5
5
  SHA512:
6
- metadata.gz: ccddcbc3dbd84e22dc321255e919341a62ada50b5cc2a8460be74844975fe666762f2956263a62f6666caef8804ac5cdc4cdfc6dd3a7e2290cd0cc9699096125
7
- data.tar.gz: a68e82f65e938d6dc06f6e42eec909424501a81e2685e415b9191f3614a9ae7a57e8be071c2047af9adb0a3dc95bb177844b8d8d3292111fbd009eb9a571b759
6
+ metadata.gz: 041458cc5d2dc716d0f34c571a4ac7f6b0a77e1832c76592f265b4947913bc80fdcb28a78f9fd666a38413229bdcd61509034b065a9826acce3514509221aa8c
7
+ data.tar.gz: fd9d96a19db356b93992cdc64c7a7969dbd1d0d685925e8ed94475b2bce3726c15d9970f1a372cf9cae232fd9dc511b9c99696a5fb7067702c3e021e66879df1
@@ -2,6 +2,9 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 2.1.8 ##
6
+ * Fixed an issue with libsass ~3.4 failing to transpile.
7
+
5
8
  ## 2.1.7 ##
6
9
  * Updated the `.span-*` classes to no longer be coupled with the grid component
7
10
  * Components
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Titon Toolkit v2.1.7 #
9
+ # Titon Toolkit v2.1.8 #
10
10
  [![Project Titon](https://img.shields.io/badge/project-titon-82667d.svg?style=flat)](http://titon.io)
11
11
  [![Build Status](https://img.shields.io/travis/titon/toolkit.svg?style=flat)](https://travis-ci.org/titon/toolkit)
12
12
  [![NPM Version](https://img.shields.io/npm/v/titon-toolkit.svg?style=flat)](https://npmjs.com/package/titon-toolkit)
@@ -2,11 +2,7 @@
2
2
  // Export a component into the compiled output only once
3
3
  // Also check to see if it has been excluded from the output all together
4
4
  @mixin export($module) {
5
- // Module is excluded, so do nothing
6
- @if (index($modules-excluded, $module) != null) {
7
-
8
- // Module hasn't been exported yet, so export it and log usage
9
- } @else if (index($modules-exported, $module) == null) {
5
+ @if (index($modules-excluded, $module) == null and index($modules-exported, $module) == null) {
10
6
  $modules-exported: append($modules-exported, $module) !global;
11
7
 
12
8
  @content;
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.1.7
1
+ 2.1.8
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: titon-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.7
4
+ version: 2.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Project Titon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-08-12 00:00:00.000000000 Z
12
+ date: 2015-11-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass