diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index dbaf23e728..b9dde81809 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -48,6 +48,9 @@ jobs: - name: Install Dependencies run: yarn --frozen-lockfile + - name: Build Project + run: yarn lerna run prepublish + - name: Build Tarballs run: yarn build:tarball diff --git a/packages/rrweb/typings/index.d.ts b/packages/rrweb/typings/index.d.ts index 6b6d18d12f..df2a3c4dc3 100644 --- a/packages/rrweb/typings/index.d.ts +++ b/packages/rrweb/typings/index.d.ts @@ -2,7 +2,7 @@ import record from './record'; import { Replayer } from './replay'; import { _mirror } from './utils'; import * as utils from './utils'; -export { EventType, IncrementalSource, MouseInteractions, ReplayerEvents, } from './types'; +export * from './types'; declare const addCustomEvent: (tag: string, payload: T) => void; declare const freezePage: () => void; export { record, addCustomEvent, freezePage, Replayer, _mirror as mirror, utils, };