Skip to content

Commit e29f9aa

Browse files
renovate[bot]yoshi-automation
authored andcommitted
fix(deps): update dependency arrify to v2
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
1 parent 95b1446 commit e29f9aa

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@google-cloud/paginator": "^0.2.0",
5353
"@google-cloud/projectify": "^0.3.0",
5454
"@google-cloud/promisify": "^0.4.0",
55-
"arrify": "^1.0.0",
55+
"arrify": "^2.0.0",
5656
"concat-stream": "^2.0.0",
5757
"dot-prop": "^4.2.0",
5858
"escape-string-regexp": "^1.0.5",
@@ -72,7 +72,6 @@
7272
},
7373
"devDependencies": {
7474
"@google-cloud/nodejs-repo-tools": "^3.0.0",
75-
"@types/arrify": "^1.0.4",
7675
"@types/escape-string-regexp": "^1.0.0",
7776
"@types/extend": "^3.0.1",
7877
"@types/is": "0.0.21",

src/filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import * as arrify from 'arrify';
17+
import arrify = require('arrify');
1818
import * as escapeStringRegexp from 'escape-string-regexp';
1919
import * as is from 'is';
2020
const isUtf8 = require('is-utf8');

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import {Service} from '@google-cloud/common-grpc';
4040
import {replaceProjectIdToken} from '@google-cloud/projectify';
4141
import {promisifyAll} from '@google-cloud/promisify';
42-
import * as arrify from 'arrify';
42+
import arrify = require('arrify');
4343
import * as extend from 'extend';
4444
import {GoogleAuth} from 'google-auth-library';
4545
import * as gax from 'google-gax';

src/mutation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import * as arrify from 'arrify';
17+
import arrify = require('arrify');
1818
import * as is from 'is';
1919
import * as Long from 'long';
2020

src/row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

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

2020
const dotProp = require('dot-prop');
2121
import * as is from 'is';

src/table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

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

2121
const concat = require('concat-stream');
2222
import * as is from 'is';

0 commit comments

Comments
 (0)