Skip to content

Commit 1df687a

Browse files
committed
Release update
1 parent 7043242 commit 1df687a

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/app/src/components/inputs/traceLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Element } from '@core/element'
22
import { html } from 'lit'
33
import { customElement, property } from 'lit/decorators.js'
4-
import type { TraceLog } from '../../../../service/src/types'
4+
import type { TraceLog } from '@wdio/devtools-service'
55

66
@customElement('wdio-devtools-trace-loader')
77
export class DevtoolsTraceLoader extends Element {

packages/app/src/components/workbench/actionItems/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { html } from 'lit'
22
import { customElement, property } from 'lit/decorators.js'
33

4-
import type { CommandLog } from '@wdio/devtools-service/types'
4+
import type { CommandLog } from '@wdio/devtools-service'
55

66
import { ActionItem, ICON_CLASS } from './item.js'
77

packages/app/src/components/workbench/actionItems/item.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Element } from '@core/element'
22
import { html, css } from 'lit'
33
import { property } from 'lit/decorators.js'
4-
import type { CommandLog } from '@wdio/devtools-service/types'
4+
import type { CommandLog } from '@wdio/devtools-service'
55

66
export type ActionEntry = TraceMutation | CommandLog
77

packages/app/src/components/workbench/logs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Element } from '@core/element'
22
import { html, css } from 'lit'
33
import { customElement, property } from 'lit/decorators.js'
44

5-
import type { CommandLog } from '@wdio/devtools-service/types'
5+
import type { CommandLog } from '@wdio/devtools-service'
66
import type { CommandEndpoint } from '@wdio/protocols'
77

88
import './list.js'

packages/app/src/controller/DataManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createContext, ContextProvider } from '@lit/context'
22
import type { ReactiveController, ReactiveControllerHost } from 'lit'
3-
import type { Metadata, CommandLog, TraceLog } from '@wdio/devtools-service/types'
3+
import type { Metadata, CommandLog, TraceLog } from '@wdio/devtools-service'
44

55
const CACHE_ID = 'wdio-trace-cache'
66

packages/service/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { getBrowserObject } from './utils.js'
1414
import { parse } from 'stack-trace'
1515
import { type TraceLog, TraceType } from './types.js'
1616
import { INTERNAL_COMMANDS, SPEC_FILE_PATTERN, CONTEXT_CHANGE_COMMANDS } from './constants.js'
17-
17+
export * from './types.js'
1818
export const launcher = DevToolsAppLauncher
1919

2020
const log = logger('@wdio/devtools-service')

0 commit comments

Comments
 (0)