Skip to content

Commit

Permalink
fix(deps): update dependency arrify to v2
Browse files Browse the repository at this point in the history
fix(deps): update dependency arrify to v2

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| arrify | dependencies | major | [`^1.0.0` -> `^2.0.0`](https://diff.intrinsic.com/arrify/1.0.1/2.0.0) | [source](https://togithub.com/sindresorhus/arrify) |

---

### Release Notes

<details>
<summary>sindresorhus/arrify</summary>

### [`v2.0.0`](https://togithub.com/sindresorhus/arrify/releases/v2.0.0)

[Compare Source](https://togithub.com/sindresorhus/arrify/compare/v1.0.1...v2.0.0)

Breaking:

-   Require Node.js 8 ([#&#8203;6](https://togithub.com/sindresorhus/arrify/issues/6))  [`8d6734f`](https://togithub.com/sindresorhus/arrify/commit/8d6734f)

Enhancements:

-   Add TypeScript definition ([#&#8203;6](https://togithub.com/sindresorhus/arrify/issues/6))  [`8d6734f`](https://togithub.com/sindresorhus/arrify/commit/8d6734f)

</details>

---

### Renovate configuration

:date: **Schedule**: "after 9am and before 3pm" (UTC).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR is stale, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#googleapis/nodejs-bigtable).

#453 automerged by dpebot
  • Loading branch information
renovate[bot] authored and yoshi-automation committed Apr 5, 2019
1 parent 95b1446 commit e29f9aa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -52,7 +52,7 @@
"@google-cloud/paginator": "^0.2.0",
"@google-cloud/projectify": "^0.3.0",
"@google-cloud/promisify": "^0.4.0",
"arrify": "^1.0.0",
"arrify": "^2.0.0",
"concat-stream": "^2.0.0",
"dot-prop": "^4.2.0",
"escape-string-regexp": "^1.0.5",
Expand All @@ -72,7 +72,6 @@
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"@types/arrify": "^1.0.4",
"@types/escape-string-regexp": "^1.0.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.21",
Expand Down
2 changes: 1 addition & 1 deletion src/filter.ts
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as arrify from 'arrify';
import arrify = require('arrify');
import * as escapeStringRegexp from 'escape-string-regexp';
import * as is from 'is';
const isUtf8 = require('is-utf8');
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -39,7 +39,7 @@
import {Service} from '@google-cloud/common-grpc';
import {replaceProjectIdToken} from '@google-cloud/projectify';
import {promisifyAll} from '@google-cloud/promisify';
import * as arrify from 'arrify';
import arrify = require('arrify');
import * as extend from 'extend';
import {GoogleAuth} from 'google-auth-library';
import * as gax from 'google-gax';
Expand Down
2 changes: 1 addition & 1 deletion src/mutation.ts
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as arrify from 'arrify';
import arrify = require('arrify');
import * as is from 'is';
import * as Long from 'long';

Expand Down
2 changes: 1 addition & 1 deletion src/row.ts
Expand Up @@ -15,7 +15,7 @@
*/

import {promisifyAll} from '@google-cloud/promisify';
import * as arrify from 'arrify';
import arrify = require('arrify');

const dotProp = require('dot-prop');
import * as is from 'is';
Expand Down
2 changes: 1 addition & 1 deletion src/table.ts
Expand Up @@ -16,7 +16,7 @@

import * as common from '@google-cloud/common-grpc';
import {promisifyAll} from '@google-cloud/promisify';
import * as arrify from 'arrify';
import arrify = require('arrify');

const concat = require('concat-stream');
import * as is from 'is';
Expand Down

0 comments on commit e29f9aa

Please sign in to comment.