Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-css-flip.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2014-03-13 08:39:26 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2014-03-13 08:44:20 +0400
commit801fd314033af9a29280bb43cacd9c5cb78ad103 (patch)
tree51399977215c94380041cbc024f3019e219e16d3
parentc802c2f44db8efdc2b6979e950f5df07c1a2a7c9 (diff)
Remove unneeded commas.
-rw-r--r--Gruntfile.js4
-rw-r--r--README.md12
-rw-r--r--test/css_flip_test.js2
3 files changed, 9 insertions, 9 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b65037c..741ce3b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -54,13 +54,13 @@ module.exports = function(grunt) {
files: {
'tmp/custom_options.css': 'test/fixtures/example.css'
}
- },
+ }
},
// Unit tests.
nodeunit: {
tests: ['test/*_test.js']
- },
+ }
});
diff --git a/README.md b/README.md
index 16771a7..cd90463 100644
--- a/README.md
+++ b/README.md
@@ -34,8 +34,8 @@ grunt.initConfig({
},
your_target: {
// Target-specific file lists and/or options go here.
- },
- },
+ }
+ }
});
```
@@ -68,8 +68,8 @@ grunt.initConfig({
files: {
'flipped-one.css': 'original-one.css',
'flipped-two.css': 'original-two.css'
- },
- },
+ }
+ }
});
```
@@ -85,8 +85,8 @@ grunt.initConfig({
files: {
'flipped-one.min.css': 'original-one.css',
'flipped-two.min.css': 'original-two.css'
- },
- },
+ }
+ }
});
```
diff --git a/test/css_flip_test.js b/test/css_flip_test.js
index cf29a53..869ab00 100644
--- a/test/css_flip_test.js
+++ b/test/css_flip_test.js
@@ -44,5 +44,5 @@ exports.cssflip = {
test.equal(actual, expected, 'should flip the CSS while honoring the custom indentation specified in the options.');
test.done();
- },
+ }
};