Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
johno committed Sep 20, 2016
1 parent 5c1d60c commit cd80a38
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 219 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -44,7 +44,7 @@
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"single-trailing-newline": "^1.0.0",
"tachyons-build-css": "^1.1.1"
"tachyons-build-css": "^1.1.2"
},
"devDependencies": {
"ava": "*",
Expand Down
114 changes: 27 additions & 87 deletions test/fixtures/output-dynamic-authors.md
Expand Up @@ -4,7 +4,7 @@ Performance based css module.

#### Stats

339 | 40 | 32
317 | 40 | 32
---|---|---
bytes | selectors | declarations

Expand Down Expand Up @@ -80,14 +80,8 @@ Running `$ npm start` will process the source css and place the built css in the
*/
/* For Hero Titles */
.f-6,
.f-headline {
font-size: 6rem;
}
.f-5,
.f-subheadline {
font-size: 5rem;
}
.f-6, .f-headline { font-size: 6rem; }
.f-5, .f-subheadline { font-size: 5rem; }
/* Type Scale */
.f1 { font-size: 3rem; }
.f2 { font-size: 2.25rem; }
Expand All @@ -96,88 +90,34 @@ Running `$ npm start` will process the source css and place the built css in the
.f5 { font-size: 1rem; }
.f6 { font-size: .875rem; }
@media screen and (min-width: 30em) {
.f-6-ns,
.f-headline-ns {
font-size: 6rem;
}
.f-5-ns,
.f-subheadline-ns {
font-size: 5rem;
}
.f1-ns {
font-size: 3rem;
}
.f2-ns {
font-size: 2.25rem;
}
.f3-ns {
font-size: 1.5rem;
}
.f4-ns {
font-size: 1.25rem;
}
.f5-ns {
font-size: 1rem;
}
.f6-ns {
font-size: .875rem;
}
.f-6-ns, .f-headline-ns { font-size: 6rem; }
.f-5-ns, .f-subheadline-ns { font-size: 5rem; }
.f1-ns { font-size: 3rem; }
.f2-ns { font-size: 2.25rem; }
.f3-ns { font-size: 1.5rem; }
.f4-ns { font-size: 1.25rem; }
.f5-ns { font-size: 1rem; }
.f6-ns { font-size: .875rem; }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.f-6-m,
.f-headline-m {
font-size: 6rem;
}
.f-5-m,
.f-subheadline-m {
font-size: 5rem;
}
.f1-m {
font-size: 3rem;
}
.f2-m {
font-size: 2.25rem;
}
.f3-m {
font-size: 1.5rem;
}
.f4-m {
font-size: 1.25rem;
}
.f5-m {
font-size: 1rem;
}
.f6-m {
font-size: .875rem;
}
.f-6-m, .f-headline-m { font-size: 6rem; }
.f-5-m, .f-subheadline-m { font-size: 5rem; }
.f1-m { font-size: 3rem; }
.f2-m { font-size: 2.25rem; }
.f3-m { font-size: 1.5rem; }
.f4-m { font-size: 1.25rem; }
.f5-m { font-size: 1rem; }
.f6-m { font-size: .875rem; }
}
@media screen and (min-width: 60em) {
.f-6-l,
.f-headline-l {
font-size: 6rem;
}
.f-5-l,
.f-subheadline-l {
font-size: 5rem;
}
.f1-l {
font-size: 3rem;
}
.f2-l {
font-size: 2.25rem;
}
.f3-l {
font-size: 1.5rem;
}
.f4-l {
font-size: 1.25rem;
}
.f5-l {
font-size: 1rem;
}
.f6-l {
font-size: .875rem;
}
.f-6-l, .f-headline-l { font-size: 6rem; }
.f-5-l, .f-subheadline-l { font-size: 5rem; }
.f1-l { font-size: 3rem; }
.f2-l { font-size: 2.25rem; }
.f3-l { font-size: 1.5rem; }
.f4-l { font-size: 1.25rem; }
.f5-l { font-size: 1rem; }
.f6-l { font-size: .875rem; }
}
```

Expand Down
36 changes: 14 additions & 22 deletions test/fixtures/output.css
Expand Up @@ -10,25 +10,17 @@
-m = medium
-l = large
*/

.bg-cv { background-size: cover; }

.bg-cn { background-size: contain; }

@media screen and (min-width: 30em) {

.bg-cv-ns { background-size: cover; }

.bg-cn-ns { background-size: contain; } }

@media screen and (min-width: 30em) and (max-width: 60em) {

.bg-cv-m { background-size: cover; }

.bg-cn-m { background-size: contain; } }

@media screen and (min-width: 60em) {

.bg-cv-l { background-size: cover; }

.bg-cn-l { background-size: contain; } }
.bg-cv { background-size: cover; }
.bg-cn { background-size: contain; }
@media screen and (min-width: 30em) {
.bg-cv-ns { background-size: cover; }
.bg-cn-ns { background-size: contain; }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.bg-cv-m { background-size: cover; }
.bg-cn-m { background-size: contain; }
}
@media screen and (min-width: 60em) {
.bg-cv-l { background-size: cover; }
.bg-cn-l { background-size: contain; }
}
114 changes: 27 additions & 87 deletions test/fixtures/output.md
Expand Up @@ -4,7 +4,7 @@ Performance based css module.

#### Stats

339 | 40 | 32
317 | 40 | 32
---|---|---
bytes | selectors | declarations

Expand Down Expand Up @@ -80,14 +80,8 @@ Running `$ npm start` will process the source css and place the built css in the
*/
/* For Hero Titles */
.f-6,
.f-headline {
font-size: 6rem;
}
.f-5,
.f-subheadline {
font-size: 5rem;
}
.f-6, .f-headline { font-size: 6rem; }
.f-5, .f-subheadline { font-size: 5rem; }
/* Type Scale */
.f1 { font-size: 3rem; }
.f2 { font-size: 2.25rem; }
Expand All @@ -96,88 +90,34 @@ Running `$ npm start` will process the source css and place the built css in the
.f5 { font-size: 1rem; }
.f6 { font-size: .875rem; }
@media screen and (min-width: 30em) {
.f-6-ns,
.f-headline-ns {
font-size: 6rem;
}
.f-5-ns,
.f-subheadline-ns {
font-size: 5rem;
}
.f1-ns {
font-size: 3rem;
}
.f2-ns {
font-size: 2.25rem;
}
.f3-ns {
font-size: 1.5rem;
}
.f4-ns {
font-size: 1.25rem;
}
.f5-ns {
font-size: 1rem;
}
.f6-ns {
font-size: .875rem;
}
.f-6-ns, .f-headline-ns { font-size: 6rem; }
.f-5-ns, .f-subheadline-ns { font-size: 5rem; }
.f1-ns { font-size: 3rem; }
.f2-ns { font-size: 2.25rem; }
.f3-ns { font-size: 1.5rem; }
.f4-ns { font-size: 1.25rem; }
.f5-ns { font-size: 1rem; }
.f6-ns { font-size: .875rem; }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.f-6-m,
.f-headline-m {
font-size: 6rem;
}
.f-5-m,
.f-subheadline-m {
font-size: 5rem;
}
.f1-m {
font-size: 3rem;
}
.f2-m {
font-size: 2.25rem;
}
.f3-m {
font-size: 1.5rem;
}
.f4-m {
font-size: 1.25rem;
}
.f5-m {
font-size: 1rem;
}
.f6-m {
font-size: .875rem;
}
.f-6-m, .f-headline-m { font-size: 6rem; }
.f-5-m, .f-subheadline-m { font-size: 5rem; }
.f1-m { font-size: 3rem; }
.f2-m { font-size: 2.25rem; }
.f3-m { font-size: 1.5rem; }
.f4-m { font-size: 1.25rem; }
.f5-m { font-size: 1rem; }
.f6-m { font-size: .875rem; }
}
@media screen and (min-width: 60em) {
.f-6-l,
.f-headline-l {
font-size: 6rem;
}
.f-5-l,
.f-subheadline-l {
font-size: 5rem;
}
.f1-l {
font-size: 3rem;
}
.f2-l {
font-size: 2.25rem;
}
.f3-l {
font-size: 1.5rem;
}
.f4-l {
font-size: 1.25rem;
}
.f5-l {
font-size: 1rem;
}
.f6-l {
font-size: .875rem;
}
.f-6-l, .f-headline-l { font-size: 6rem; }
.f-5-l, .f-subheadline-l { font-size: 5rem; }
.f1-l { font-size: 3rem; }
.f2-l { font-size: 2.25rem; }
.f3-l { font-size: 1.5rem; }
.f4-l { font-size: 1.25rem; }
.f5-l { font-size: 1rem; }
.f6-l { font-size: .875rem; }
}
```

Expand Down
36 changes: 14 additions & 22 deletions test/fixtures/output.repeat.css
Expand Up @@ -10,25 +10,17 @@
-m = medium
-l = large
*/

.bg-cv.bg-cv.bg-cv.bg-cv { background-size: cover; }

.bg-cn.bg-cn.bg-cn.bg-cn { background-size: contain; }

@media screen and (min-width: 30em) {

.bg-cv-ns.bg-cv-ns.bg-cv-ns.bg-cv-ns { background-size: cover; }

.bg-cn-ns.bg-cn-ns.bg-cn-ns.bg-cn-ns { background-size: contain; } }

@media screen and (min-width: 30em) and (max-width: 60em) {

.bg-cv-m.bg-cv-m.bg-cv-m.bg-cv-m { background-size: cover; }

.bg-cn-m.bg-cn-m.bg-cn-m.bg-cn-m { background-size: contain; } }

@media screen and (min-width: 60em) {

.bg-cv-l.bg-cv-l.bg-cv-l.bg-cv-l { background-size: cover; }

.bg-cn-l.bg-cn-l.bg-cn-l.bg-cn-l { background-size: contain; } }
.bg-cv.bg-cv.bg-cv.bg-cv { background-size: cover; }
.bg-cn.bg-cn.bg-cn.bg-cn { background-size: contain; }
@media screen and (min-width: 30em) {
.bg-cv-ns.bg-cv-ns.bg-cv-ns.bg-cv-ns { background-size: cover; }
.bg-cn-ns.bg-cn-ns.bg-cn-ns.bg-cn-ns { background-size: contain; }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.bg-cv-m.bg-cv-m.bg-cv-m.bg-cv-m { background-size: cover; }
.bg-cn-m.bg-cn-m.bg-cn-m.bg-cn-m { background-size: contain; }
}
@media screen and (min-width: 60em) {
.bg-cv-l.bg-cv-l.bg-cv-l.bg-cv-l { background-size: cover; }
.bg-cn-l.bg-cn-l.bg-cn-l.bg-cn-l { background-size: contain; }
}

0 comments on commit cd80a38

Please sign in to comment.