Skip to content

Commit

Permalink
chore(deps): update dependency gts to ^0.6.0 (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanmar511 committed Jun 13, 2018
1 parent 0692b94 commit f0bcb22
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 60 deletions.
96 changes: 51 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -54,7 +54,7 @@
"@types/sinon": "^5.0.1",
"codecov": "^3.0.0",
"deep-copy": "^1.4.2",
"gts": "^0.5.3",
"gts": "^0.6.0",
"js-green-licenses": "^0.5.0",
"mocha": "^5.0.0",
"nock": "^9.0.22",
Expand Down
4 changes: 2 additions & 2 deletions ts/src/index.ts
Expand Up @@ -15,8 +15,8 @@
*/

import {Logger, util} from '@google-cloud/common';
import * as delay from 'delay';
import * as extend from 'extend';
import delay from 'delay';
import extend from 'extend';
import * as fs from 'fs';
import * as gcpMetadata from 'gcp-metadata';
import * as path from 'path';
Expand Down
4 changes: 2 additions & 2 deletions ts/src/profiler.ts
Expand Up @@ -17,8 +17,8 @@
import {Logger, Service, ServiceObject, util} from '@google-cloud/common';
import * as http from 'http';
import * as path from 'path';
import * as pify from 'pify';
import * as msToStr from 'pretty-ms';
import pify from 'pify';
import msToStr from 'pretty-ms';
import * as zlib from 'zlib';

import {perftools} from '../../proto/profile';
Expand Down
2 changes: 1 addition & 1 deletion ts/src/profilers/time-profiler.ts
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as delay from 'delay';
import delay from 'delay';

import {perftools} from '../../../proto/profile';
import {serializeTimeProfile} from './profile-serializer';
Expand Down
4 changes: 3 additions & 1 deletion ts/src/v8-types.ts
Expand Up @@ -34,7 +34,9 @@ export interface ProfileNode {
children: ProfileNode[];
}

export interface TimeProfileNode extends ProfileNode { hitCount: number; }
export interface TimeProfileNode extends ProfileNode {
hitCount: number;
}

export interface AllocationProfileNode extends ProfileNode {
allocations: Allocation[];
Expand Down
6 changes: 3 additions & 3 deletions ts/system-test/test-start.ts
Expand Up @@ -15,9 +15,9 @@
*/

import * as assert from 'assert';
import * as delay from 'delay';
import * as nock from 'nock';
import * as pify from 'pify';
import delay from 'delay';
import nock from 'nock';
import pify from 'pify';
import * as zlib from 'zlib';

import {perftools} from '../../proto/profile';
Expand Down
2 changes: 1 addition & 1 deletion ts/test/test-init-config.ts
Expand Up @@ -17,7 +17,7 @@
import * as common from '@google-cloud/common';
import {GlobalConfig} from '@google-cloud/common/build/src/util';
import * as assert from 'assert';
import * as extend from 'extend';
import extend from 'extend';
import * as gcpMetadata from 'gcp-metadata';
import * as sinon from 'sinon';

Expand Down
6 changes: 3 additions & 3 deletions ts/test/test-profiler.ts
Expand Up @@ -16,9 +16,9 @@

import * as common from '@google-cloud/common';
import * as assert from 'assert';
import * as extend from 'extend';
import * as nock from 'nock';
import * as pify from 'pify';
import extend from 'extend';
import nock from 'nock';
import pify from 'pify';
import * as sinon from 'sinon';
import {instance, mock, reset, verify, when} from 'ts-mockito';
import * as zlib from 'zlib';
Expand Down
2 changes: 1 addition & 1 deletion ts/test/test-time-profiler.ts
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import * as delay from 'delay';
import delay from 'delay';
import * as sinon from 'sinon';

import {perftools} from '../../proto/profile';
Expand Down

0 comments on commit f0bcb22

Please sign in to comment.