Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2014-03-11 11:49:41 +0400
committerXhmikosR <xhmikosr@gmail.com>2015-12-26 10:53:15 +0300
commit255a3c5479eebb291335e4f6760d5459c3086c9d (patch)
tree9d41a14c91efeb13a10a69585d2c23abd6dd0d51
parent9021f88125a1836a66fce0292c625ebfec465ffc (diff)
Switch to "grunt-sass".
-rw-r--r--.gitignore1
-rw-r--r--.travis.yml2
-rw-r--r--Gruntfile.js8
-rw-r--r--package.json2
4 files changed, 7 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 915c39a..4066626 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,6 @@
_gh_pages
_site
.ruby-version
-.sass-cache
# Numerous always-ignore extensions
*.diff
diff --git a/.travis.yml b/.travis.yml
index 0abe63a..d1426a7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ before_install:
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- - travis_retry gem install --no-document "jekyll:~>3.0" "rouge:~>1.10" "sass:~>3.4"
+ - travis_retry gem install --no-document "jekyll:~>3.0" "rouge:~>1.10"
matrix:
fast_finish: true
diff --git a/Gruntfile.js b/Gruntfile.js
index 9e19d91..2c3c186 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -66,9 +66,11 @@ module.exports = function (grunt) {
sass: {
options: {
- sourcemap: 'none',
- style: 'expanded',
- unixNewlines: true
+ outputStyle: 'expanded',
+ precision: 6,
+ sourceComments: false,
+ sourcemap: false,
+ style: 'expanded'
},
core: {
src: 'sass/ratchet.scss',
diff --git a/package.json b/package.json
index d1400a3..fa3f3dd 100644
--- a/package.json
+++ b/package.json
@@ -38,13 +38,13 @@
"grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-htmlmin": "~0.6.0",
"grunt-contrib-jshint": "~0.11.2",
- "grunt-contrib-sass": "~0.9.2",
"grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-csscomb": "~3.1.0",
"grunt-html": "~5.0.0",
"grunt-jekyll": "~0.4.2",
"grunt-jscs": "~2.5.0",
+ "grunt-sass": "~1.1.0",
"grunt-sed": "twbs/grunt-sed#v0.2.0",
"load-grunt-tasks": "~3.4.0",
"time-grunt": "~1.3.0"