Skip to content

Commit

Permalink
chore(Gruntfile): replace double quotes with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Dec 17, 2015
1 parent 525be5b commit 9f5d76e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ module.exports = function(grunt) {
'!src/angular.bind.js' // we ignore this file since contains an early return statement
],
options: {
config: ".jscsrc"
config: '.jscsrc'
}
},

Expand Down Expand Up @@ -231,7 +231,7 @@ module.exports = function(grunt) {
dest: 'build/angular-aria.js',
src: util.wrap(files['angularModules']['ngAria'], 'module')
},
"promises-aplus-adapter": {
'promises-aplus-adapter': {
dest:'tmp/promises-aplus-adapter++.js',
src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js']
}
Expand All @@ -253,7 +253,7 @@ module.exports = function(grunt) {
},


"ddescribe-iit": {
'ddescribe-iit': {
files: [
'src/**/*.js',
'test/**/*.js',
Expand All @@ -274,7 +274,7 @@ module.exports = function(grunt) {
}
},

"merge-conflict": {
'merge-conflict': {
files: [
'src/**/*',
'test/**/*',
Expand Down Expand Up @@ -304,11 +304,11 @@ module.exports = function(grunt) {
},

shell: {
"npm-install": {
'npm-install': {
command: 'node scripts/npm/check-node-modules.js'
},

"promises-aplus-tests": {
'promises-aplus-tests': {
options: {
stdout: false,
stderr: true,
Expand Down

0 comments on commit 9f5d76e

Please sign in to comment.