Fixing babel runtime

This commit is contained in:
Justin 2018-03-30 14:32:16 -04:00
parent 688dc4e363
commit a7b2c170d3
3 changed files with 12 additions and 10 deletions

View File

@ -145,6 +145,10 @@ This started off as a fork from [node-gitlab](https://github.com/node-gitlab/nod
[MIT](https://github.com/jdalrymple/node-gitlab-api/blob/master/LICENSE.md)
## Changelog
[2.2.7](https://github.com/jdalrymple/node-gitlab-api/tags/2.2.7) (2018-3-15)
------------------
- Fixing babel runtime
[2.2.6](https://github.com/jdalrymple/node-gitlab-api/tags/2.2.6) (2018-3-15)
------------------
- Fixed more issues within the url concatenation

15
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "node-gitlab-api",
"version": "2.2.5",
"version": "2.2.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2496,9 +2496,8 @@
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"dev": true,
"requires": {
"core-js": "2.5.3",
"core-js": "2.5.4",
"regenerator-runtime": "0.11.1"
}
},
@ -2769,10 +2768,9 @@
"dev": true
},
"core-js": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz",
"integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=",
"dev": true
"version": "2.5.4",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.4.tgz",
"integrity": "sha1-8si/GB8qgLkvNgEhQpzmOi8K6uA="
},
"core-util-is": {
"version": "1.0.2",
@ -5334,8 +5332,7 @@
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
"dev": true
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
},
"regex-cache": {
"version": "0.4.4",

View File

@ -1,6 +1,6 @@
{
"name": "node-gitlab-api",
"version": "2.2.6",
"version": "2.2.7",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"main": "dist/latest/index.js",
"engines": {
@ -38,6 +38,7 @@
"eslint-plugin-react": "^7.6.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"parse-link-header": "^1.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",