summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index a220434..d7ec914 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,28 +1,28 @@
module.exports = function(grunt) {
- var path = require("path");
+ var path = require('path');
grunt.initConfig({
- pkg: grunt.file.readJSON("package.json"),
+ pkg: grunt.file.readJSON('package.json'),
bower: {
install: {
options: {
- targetDir: "static/scripts/libs",
+ targetDir: 'static/scripts/libs',
install: true,
cleanup: true,
- layout: "byComponent"
+ layout: 'byComponent'
}
}
},
run: {
mach2: {
- cmd: "python",
- args: ["mach2.py"]
+ cmd: 'python',
+ args: ['mach2.py']
}
}
});
- grunt.loadNpmTasks("grunt-bower-task");
- grunt.loadNpmTasks("grunt-run");
+ grunt.loadNpmTasks('grunt-bower-task');
+ grunt.loadNpmTasks('grunt-run');
- grunt.task.registerTask("default", ["bower:install", "run:mach2"]);
+ grunt.task.registerTask('default', ['bower:install', 'run:mach2']);
};