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 +4 -4
- data/changelog.md +3 -0
- data/readme.md +1 -1
- data/scss/toolkit/mixins/_layout.scss +1 -5
- data/version.md +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21296ab9e50ec94f5999457f65fe5a6b407c5457
|
|
4
|
+
data.tar.gz: 9747a967f76ef52bed0e54d2baa198270ab2bea1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 041458cc5d2dc716d0f34c571a4ac7f6b0a77e1832c76592f265b4947913bc80fdcb28a78f9fd666a38413229bdcd61509034b065a9826acce3514509221aa8c
|
|
7
|
+
data.tar.gz: fd9d96a19db356b93992cdc64c7a7969dbd1d0d685925e8ed94475b2bce3726c15d9970f1a372cf9cae232fd9dc511b9c99696a5fb7067702c3e021e66879df1
|
data/changelog.md
CHANGED
data/readme.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
\/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
# Titon Toolkit v2.1.
|
|
9
|
+
# Titon Toolkit v2.1.8 #
|
|
10
10
|
[](http://titon.io)
|
|
11
11
|
[](https://travis-ci.org/titon/toolkit)
|
|
12
12
|
[](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
|
-
|
|
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.
|
|
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.
|
|
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-
|
|
12
|
+
date: 2015-11-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: sass
|