From 4405c2bb4f0220ed7989e177453c246fe2078529 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Fri, 24 Feb 2023 15:12:10 +0100 Subject: [PATCH 1/2] fix(build/CI): Run prepublish scripts before building tarballs --- .github/workflows/ci-cd.yml | 3 +++ 1 file changed, 3 insertions(+) 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 From 9491df41135e03ad49ba2a5a4748ebd095e441f4 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Fri, 24 Feb 2023 15:28:50 +0100 Subject: [PATCH 2/2] unstale packages/rrweb/typings/index.d.ts --- packages/rrweb/typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, };