Skip to content

Commit 481ed38

Browse files
committed
foramt
1 parent 05e6a0f commit 481ed38

File tree

10 files changed

+11
-46
lines changed

10 files changed

+11
-46
lines changed

CHANGELOG.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
## -version - 2025-01-31
22

3+
## - 2025-01-31
34

5+
## - 2025-01-31
46

5-
## - 2025-01-31
6-
7-
8-
9-
## - 2025-01-31
10-
11-
12-
13-
## - 2025-01-31
14-
15-
7+
## - 2025-01-31
168

179
# Changelog

packages/rrdom/test/diff.test.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ import * as fs from 'fs';
55
import * as path from 'path';
66
import * as puppeteer from 'puppeteer';
77
import { vi, MockInstance } from 'vitest';
8-
import {
9-
createMirror,
10-
Mirror as NodeMirror,
11-
} from '@posthog/rrweb-snapshot';
8+
import { createMirror, Mirror as NodeMirror } from '@posthog/rrweb-snapshot';
129
import {
1310
buildFromDom,
1411
getDefaultSN,

packages/rrweb/src/record/iframe-manager.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ import type { Mirror } from '@posthog/rrweb-snapshot';
22
import { genId } from '@posthog/rrweb-snapshot';
33
import type { CrossOriginIframeMessageEvent } from '../types';
44
import CrossOriginIframeMirror from './cross-origin-iframe-mirror';
5-
import {
6-
EventType,
7-
NodeType,
8-
IncrementalSource,
9-
} from '@posthog/rrweb-types';
5+
import { EventType, NodeType, IncrementalSource } from '@posthog/rrweb-types';
106
import type {
117
eventWithTime,
128
eventWithoutTime,

packages/rrweb/src/replay/canvas/deserialize-args.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { decode } from 'base64-arraybuffer';
22
import type { Replayer } from '../';
3-
import type {
4-
CanvasArg,
5-
SerializedCanvasArg,
6-
} from '@posthog/rrweb-types';
3+
import type { CanvasArg, SerializedCanvasArg } from '@posthog/rrweb-types';
74

85
// TODO: add ability to wipe this list
96
type GLVarMap = Map<string, any[]>;

packages/rrweb/src/replay/media/index.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import type { Emitter } from '@posthog/rrweb-types';
2-
import {
3-
MediaInteractions,
4-
ReplayerEvents,
5-
} from '@posthog/rrweb-types';
2+
import { MediaInteractions, ReplayerEvents } from '@posthog/rrweb-types';
63
import type { RRMediaElement } from '@posthog/rrdom';
74
import type { createPlayerService, createSpeedService } from '../machine';
85
import type { Mirror } from '@posthog/rrweb-snapshot';

packages/rrweb/test/events/dialog-playback.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
eventWithTime,
3-
IncrementalSource,
4-
} from '@posthog/rrweb-types';
1+
import { eventWithTime, IncrementalSource } from '@posthog/rrweb-types';
52

63
const startTime = 1900000000;
74
export const closedFullSnapshotTime = 132;

packages/rrweb/test/events/hover.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
IncrementalSource,
3-
MouseInteractions,
4-
} from '@posthog/rrweb-types';
1+
import { IncrementalSource, MouseInteractions } from '@posthog/rrweb-types';
52
import type { eventWithTime } from '../../../types/src';
63

74
const events: eventWithTime[] = [

packages/rrweb/test/integration.test.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ import {
1414
ISuite,
1515
} from './utils';
1616
import type { recordOptions } from '../src/types';
17-
import {
18-
eventWithTime,
19-
NodeType,
20-
EventType,
21-
} from '@posthog/rrweb-types';
17+
import { eventWithTime, NodeType, EventType } from '@posthog/rrweb-types';
2218
import { visitSnapshot } from '@posthog/rrweb-snapshot';
2319

2420
describe('record integration tests', function (this: ISuite) {

packages/rrweb/test/rrdom.test.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ import type {
77
styleDeclarationData,
88
styleSheetRuleData,
99
} from '@posthog/rrweb-types';
10-
import {
11-
createMirror,
12-
Mirror as NodeMirror,
13-
} from '@posthog/rrweb-snapshot';
10+
import { createMirror, Mirror as NodeMirror } from '@posthog/rrweb-snapshot';
1411
import type { ReplayerHandler } from '@posthog/rrdom';
1512

1613
describe('diff algorithm for rrdom', () => {

vite.config.default.ts

-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ export default function (
139139
minify: false,
140140

141141
sourcemap: true,
142-
143142
},
144143
plugins: [
145144
dts({

0 commit comments

Comments
 (0)