Skip to content

Commit

Permalink
README.md: Fixes #17
Browse files Browse the repository at this point in the history
  • Loading branch information
kozy4324 committed Feb 19, 2014
1 parent 322ac13 commit 9a7bde3
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ grunt.initConfig({
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
}
}
})
```

Expand Down Expand Up @@ -72,8 +72,10 @@ In this example, it will concatenate the two specified source files(in order), j
grunt.initConfig({
concat_sourcemap: {
options: {},
files: {
'dest/default_options.js': ['src/a.js', 'src/b.js']
target: {
files: {
'dest/default_options.js': ['src/a.js', 'src/b.js']
}
}
}
})
Expand Down Expand Up @@ -108,8 +110,10 @@ grunt.initConfig({
options: {
sourcesContent: true
},
files: {
'dest/default_options.js': ['src/a.js', 'src/b.js']
target:
files: {
'dest/default_options.js': ['src/a.js', 'src/b.js']
}
}
}
})
Expand Down

0 comments on commit 9a7bde3

Please sign in to comment.