Browse Source

Switch to "grunt-sass".

pull/479/head
XhmikosR 11 years ago
parent
commit
255a3c5479
  1. 1
      .gitignore
  2. 2
      .travis.yml
  3. 8
      Gruntfile.js
  4. 2
      package.json

1
.gitignore vendored

@ -2,7 +2,6 @@
_gh_pages _gh_pages
_site _site
.ruby-version .ruby-version
.sass-cache
# Numerous always-ignore extensions # Numerous always-ignore extensions
*.diff *.diff

2
.travis.yml

@ -21,7 +21,7 @@ before_install:
install: install:
- travis_retry npm install -g grunt-cli - travis_retry npm install -g grunt-cli
- travis_retry npm install - 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: matrix:
fast_finish: true fast_finish: true

8
Gruntfile.js

@ -66,9 +66,11 @@ module.exports = function (grunt) {
sass: { sass: {
options: { options: {
sourcemap: 'none', outputStyle: 'expanded',
style: 'expanded', precision: 6,
unixNewlines: true sourceComments: false,
sourcemap: false,
style: 'expanded'
}, },
core: { core: {
src: 'sass/ratchet.scss', src: 'sass/ratchet.scss',

2
package.json

@ -38,13 +38,13 @@
"grunt-contrib-cssmin": "~0.14.0", "grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-htmlmin": "~0.6.0", "grunt-contrib-htmlmin": "~0.6.0",
"grunt-contrib-jshint": "~0.11.2", "grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-sass": "~0.9.2",
"grunt-contrib-uglify": "~0.11.0", "grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "~0.6.1", "grunt-contrib-watch": "~0.6.1",
"grunt-csscomb": "~3.1.0", "grunt-csscomb": "~3.1.0",
"grunt-html": "~5.0.0", "grunt-html": "~5.0.0",
"grunt-jekyll": "~0.4.2", "grunt-jekyll": "~0.4.2",
"grunt-jscs": "~2.5.0", "grunt-jscs": "~2.5.0",
"grunt-sass": "~1.1.0",
"grunt-sed": "twbs/grunt-sed#v0.2.0", "grunt-sed": "twbs/grunt-sed#v0.2.0",
"load-grunt-tasks": "~3.4.0", "load-grunt-tasks": "~3.4.0",
"time-grunt": "~1.3.0" "time-grunt": "~1.3.0"

Loading…
Cancel
Save