Skip to content
This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Commit 9ea34b6

Browse files
committed
Add sass precision to test suite for stability
1 parent b51fb75 commit 9ea34b6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project adheres to [Semantic Versioning](http://semver.org).
55

66
## [Unreleased (`master`)][unreleased]
77

8-
Nothing at the moment.
8+
- Extend grid-media to accept multiple custom grids
99

1010
## [2.1.0] - 2017-06-27
1111

Gulpfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ var paths = {
1212
gulp.task("sass", function () {
1313
return gulp.src(paths.scss)
1414
.pipe(sass({
15-
sourcemaps: true
15+
sourcemaps: true,
16+
precision: 6
1617
}))
1718
.pipe(autoprefix("last 2 versions"))
1819
.pipe(gulp.dest("./contrib"))

contrib/patterns/_grid-nested.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $grid--nested: (
44
);
55

66
.grid--nested {
7-
@include grid-container($grid--nested);
7+
@include grid-container;
88
}
99

1010
.grid--nested__column {

spec/support/sass_support.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module SassSupport
22
def generate_css
33
_mkdir("tmp")
4-
`sass -I . --update spec/fixtures:tmp --quiet`
4+
`sass -I . --update spec/fixtures:tmp --quiet --precision 5`
55
end
66

77
def clean_up

0 commit comments

Comments
 (0)