From 3f14c56860ff67e2d2a689fe3f362ad7a25631d5 Mon Sep 17 00:00:00 2001 From: Michaƫl Ball Date: Sun, 20 Dec 2015 15:22:16 +0000 Subject: Syntax improvements --- Gruntfile.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Gruntfile.js') 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']); }; -- cgit v1.2.3