Skip to content

Commit c73c2a4

Browse files
committed
Update badges and node requirements in README.md
1 parent 7aa30d4 commit c73c2a4

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#gulp-requirejs
22

3-
[![Dependency Status](https://david-dm.org/robinthrift/gulp-requirejs.png)](https://david-dm.org/robinthrift/gulp-requirejs)
4-
[![Build Status](https://travis-ci.org/RobinThrift/gulp-requirejs.png?branch=master)](https://travis-ci.org/RobinThrift/gulp-requirejs)
3+
[![Dependency Status](https://david-dm.org/jorrit/gulp-requirejs.png)](https://david-dm.org/jorrit/gulp-requirejs)
4+
[![Build Status](https://travis-ci.org/jorrit/gulp-requirejs.png?branch=master)](https://travis-ci.org/jorrit/gulp-requirejs)
55

66
## Information
77

88
A small, simple, very easy wrapper around the [require.js optimizer](https://github.com/jrburke/r.js) to work with [gulp.js](https://github.com/gulpjs/gulp)
99

1010
<table>
11-
<tr>
11+
<tr>
1212
<td>Package</td><td>gulp-requirejs</td>
1313
</tr>
1414
<tr>
@@ -17,7 +17,7 @@ A small, simple, very easy wrapper around the [require.js optimizer](https://git
1717
</tr>
1818
<tr>
1919
<td>Node Version</td>
20-
<td>>= 0.4</td>
20+
<td>>= 0.10</td>
2121
</tr>
2222
</table>
2323

@@ -33,7 +33,7 @@ $ npm install --save-dev gulp-requirejs
3333
## Usage
3434

3535
Because the require.js optimizer (_r.js_) is a kind of build system in itself we can't use the `gulp.src([...])` syntax at the moment (I might add this in future), instead this wrapper itself emits a pipable stream, holding a 'virtual' file, in which the result of the r.js build process are saved.
36-
36+
3737
The resulting stream can be treated like a regular `gulp.src(...)` stream.
3838

3939
>NOTE: The built in minification/obfuscation is deactivated by default and can not be switched on. Please use a gulp plugin like gulp-uglify for this.
@@ -59,12 +59,11 @@ Note: In order to let gulp know that the optimization completes, return the rjs
5959

6060
### Error handling
6161

62-
gulp-requirejs will emit errors when you don't pass an options object and if the `baseUrl` or `out` properties are undefined.
63-
64-
The require.js optimizer itself might also emit errors; unfortunately there's no way of catching them elegantly at the moment.
62+
gulp-requirejs will emit errors when you don't pass an options object and if the `baseUrl` or `out` properties are undefined.
63+
64+
The require.js optimizer itself might also emit errors; unfortunately there's no way of catching them elegantly at the moment.
6565

6666

6767
## Options
6868

6969
The options object supports the same parameters as the [require.js optimizer](https://github.com/jrburke/r.js).
70-

0 commit comments

Comments
 (0)