Skip to content
View LiniovasDovydas's full-sized avatar
⚑
⚑

Block or report LiniovasDovydas

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Upload vite sourcemaps to rollbar if... Upload vite sourcemaps to rollbar if sourcemaps are enabled and remove the sourcemap files from the build.
    1
    import type { PluginOption } from 'vite';
    2
    
                  
    3
    import fs from 'fs';
    4
    import path from 'path';
    5
    
                  
  2. Broadcast channel state sync with re... Broadcast channel state sync with react external store API
    1
    type BroadcastStateSyncMessage = { type: "STATE_SYNC" };
    2
    type BroadcastStateUpdate<S> = { type: "UPDATE"; data: S };
    3
    type BroadcastCheckOwnerShipMessage = { type: "CHECK_OWNERSHIP" };
    4
    type BroadcastTransferOwnershipMessage = { type: "TRANSFER_OWNERSHIP" };
    5
    type BroadcastOwnershipTakenMessage = { type: "OWNERSHIP_TAKEN"; id: string };