diff options
| author | Thomas McDonald <[email protected]> | 2015-01-09 10:26:16 +0000 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-01-18 19:06:51 -0800 |
| commit | 0964504fdafdde0ac71ab1a6f65eea1686cef9f8 (patch) | |
| tree | 9411ccf6159c264f842daa2ac6d35f30d45af0d4 | |
| parent | 1236e7a9961bd45f7470b30fc278562670a9f582 (diff) | |
| download | bootstrap-0964504fdafdde0ac71ab1a6f65eea1686cef9f8.tar.xz bootstrap-0964504fdafdde0ac71ab1a6f65eea1686cef9f8.zip | |
remove less references from package files
Closes #62 (of v4)
| -rw-r--r-- | Gruntfile.js | 10 | ||||
| -rw-r--r-- | composer.json | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 19f9bcfdf..39cc53806 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -288,13 +288,13 @@ module.exports = function (grunt) { files: '<%= jshint.test.src %>', tasks: ['jshint:test', 'qunit'] }, - less: { - files: 'less/**/*.less', - tasks: 'less' + sass: { + files: 'scss/**/*.scss', + tasks: 'sass-compile' }, docs: { - files: 'docs/assets/less/*.less', - tasks: 'less' + files: 'docs/assets/scss/*.scss', + tasks: 'sass:docs' } }, diff --git a/composer.json b/composer.json index b63a6d320..e348db2f6 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "keywords": [ "css", "js", - "less", + "sass", "mobile-first", "responsive", "front-end", |
