Improve development tooling (#1516)
- Running `yarn build` in a `packages/*/` directory will trigger build of all dependencies too, and cache them if possible. - Fix for `yarn dev` breaking for `rrweb` package whenever changing files in `rrweb` package - Update typescript, turbo, vite and vite-plugin-dts - Require `workspaces-to-typescript-project-references` from `prepublish`
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { strFromU8, strToU8, zlibSync } from 'fflate';
|
||||
import type { PackFn } from '@rrweb/types';
|
||||
import { eventWithTimeAndPacker, MARK } from './base';
|
||||
import { type eventWithTimeAndPacker, MARK } from './base';
|
||||
|
||||
export const pack: PackFn = (event) => {
|
||||
const _e: eventWithTimeAndPacker = {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { strFromU8, strToU8, unzlibSync } from 'fflate';
|
||||
import { eventWithTimeAndPacker, MARK } from './base';
|
||||
import { type eventWithTimeAndPacker, MARK } from './base';
|
||||
import type { UnpackFn, eventWithTime } from '@rrweb/types';
|
||||
|
||||
export const unpack: UnpackFn = (raw: string) => {
|
||||
|
||||
Reference in New Issue
Block a user