Skip to content

Commit 1dd0f04

Browse files
committed
update
- fix bugs with testing - implement babel plugin babel-plugin-transform-builtin-extend
1 parent 3ce237b commit 1dd0f04

30 files changed

+2001
-889
lines changed

.babelrc

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"targets": {
77
"targets": {
8-
"node": "4.0.0"
8+
"node": "8.0.0"
99
}
1010
}
1111
}
@@ -18,6 +18,14 @@
1818
"regenerator": true
1919
}
2020
],
21+
[
22+
"babel-plugin-transform-builtin-extend",
23+
{
24+
"globals": [
25+
"Error"
26+
]
27+
}
28+
],
2129
"transform-object-rest-spread"
2230
]
2331
}

.npmignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ examples
55
.vscode
66
.eslintrc.js
77
webpack.config.js
8-
TODO.txt
8+
TODO.txt
9+
lib/tests.js

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ rapify.bootstrap({
4444

4545
## Installation
4646
This library is available as an npm package and it requires express as a peer dependency. Which means you have to have express as part of your dependencies.
47-
It has been tested with express version >= 4.0.0.
47+
It has been tested with express version >= 8.0.0.
4848

4949
```
5050
# install express if you haven't already

0 commit comments

Comments
 (0)