Skip to content

Commit

Permalink
Minor formatting style (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 authored Jun 28, 2019
1 parent b12652d commit 755f380
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
command: yarn run check
- run:
name: Compile
command: yarn run compile
command: yarn compile
- run:
name: Test
command: yarn run test
command: yarn test
4 changes: 2 additions & 2 deletions packages/opentelemetry-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"repository": "open-telemetry/opentelemetry-js",
"scripts": {
"test": "nyc ts-mocha -p ./tsconfig.json test/**/*.ts",
"tdd": "yarn run test -- --watch-extensions ts --watch",
"tdd": "yarn test -- --watch-extensions ts --watch",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"clean": "rimraf build/*",
"check": "gts check",
Expand Down Expand Up @@ -44,7 +44,7 @@
"codecov": "^3.1.0",
"gts": "^1.0.0",
"mocha": "^6.1.0",
"nyc": "14.0.0",
"nyc": "^14.0.0",
"ts-mocha": "^6.0.0",
"ts-node": "^8.0.0",
"typescript": "^3.4.5"
Expand Down
4 changes: 2 additions & 2 deletions packages/opentelemetry-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

export * from './resources/Resource';
export * from './trace/attributes';
export * from './trace/link';
export * from './trace/span';
export * from './trace/span_context';
export * from './trace/span_kind';
export * from './trace/status';
export * from './trace/link';
export * from './trace/attributes';
export * from './trace/trace_options';
export * from './trace/trace_state';
2 changes: 1 addition & 1 deletion packages/opentelemetry-types/src/trace/span.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

import { Attributes } from './attributes';
import { SpanContext } from './span_context';
import { Status } from './status';
import { Attributes } from './attributes';

/**
* An interface that represents a span. A span represents a single operation
Expand Down
2 changes: 1 addition & 1 deletion packages/opentelemetry-types/src/trace/span_context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*/

import { TraceState } from './trace_state';
import { TraceOptions } from './trace_options';
import { TraceState } from './trace_state';

/**
* A SpanContext represents the portion of a {@link Span} which must be
Expand Down

0 comments on commit 755f380

Please sign in to comment.