aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sources/css/tyrian/Gruntfile.js')
-rw-r--r--sources/css/tyrian/Gruntfile.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/sources/css/tyrian/Gruntfile.js b/sources/css/tyrian/Gruntfile.js
index 035e5b4..35cf114 100644
--- a/sources/css/tyrian/Gruntfile.js
+++ b/sources/css/tyrian/Gruntfile.js
@@ -38,9 +38,7 @@ module.exports = function(grunt) {
files: [
{expand: true, flatten: true, src: ['dist/tyrian.css'], dest: 'dist/'}
]
- }
- },
- 'string-replace': {
+ },
inject_variables: {
options: {
patterns: [
@@ -51,7 +49,7 @@ module.exports = function(grunt) {
]
},
files: [
- {expand: true, flatten: true, src: ['../bootstrap/less/bootstrap.less'], dest: '../bootstrap/less/'}
+ {expand: true, flatten: true, src: ['../bootstrap/less/bootstrap.less'], dest: '../bootstrap/less/'}
]
}
},
@@ -75,7 +73,7 @@ module.exports = function(grunt) {
grunt.registerTask("compile", ["less:compile", "replace:compile"]);
grunt.registerTask("compress", ["less:minify"]);
- grunt.registerTask("bootstrap", ["string-replace:inject_variables", "shell:build_bootstrap"]);
+ grunt.registerTask("bootstrap", ["replace:inject_variables", "shell:build_bootstrap"]);
grunt.registerTask("dist", ["bootstrap", "compile", "compress"]);
grunt.registerTask("default", ["dist"]);