Preserve JSX with proper tree-shaking.
acorn-jsxis injected for you.@babel/plugin-syntax-jsxis needed if you're using Babel.
| // Adapted from: https://digitalbunker.dev/2020/09/13/understanding-gaussian-blurs/ | |
| function gaussianBlurMatrix(blurRadius: number) { | |
| if (blurRadius !== Math.round(blurRadius) || blurRadius <= 0) { | |
| throw Error('Blur radius must be a positive integer') | |
| } | |
| const kernel: number[] = [] | |
| const kernelWidth = 1 + 2 * blurRadius | |
| const kernelSize = kernelWidth * kernelWidth |
| // Adapted from https://github.com/lukeed/escalade/blob/2477005/src/sync.js | |
| import { dirname, join } from 'path' | |
| import { readdirSync } from 'fs' | |
| /** | |
| * Search each parent directory until a string or false is returned. | |
| */ | |
| export function findFile( | |
| dir: string, | |
| callback: (names: string[], dir: string) => string | false | undefined |
| { | |
| "repos": { | |
| "mixpa": { | |
| "url": "https://github.com/aleclarson/mixpa" | |
| } | |
| } | |
| } |
| CGImageRef createAlphaMask(CGImageRef inputImage) { | |
| int width = (int)CGImageGetWidth(inputImage); | |
| int height = (int)CGImageGetHeight(inputImage); | |
| int bytesPerRow = (int)CGImageGetBytesPerRow(inputImage); | |
| CGColorSpaceRef colorSpace = CGImageGetColorSpace(inputImage); | |
| CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(inputImage); | |
| unsigned char *data = (unsigned char *)calloc(bytesPerRow * height, 1); | |
| CGContextRef ctx = CGBitmapContextCreate(data, | |
| width, |
| commit 3c0e91303b54f3e01ff136f11e9f4b08017a9a45 | |
| Author: Alec Larson <1925840+aleclarson@users.noreply.github.com> | |
| Date: Thu Nov 12 18:41:10 2020 -0500 | |
| wip | |
| diff --git a/app/tsconfig.base.json b/app/tsconfig.base.json | |
| new file mode 100644 | |
| index 0000000..8123fe5 | |
| --- /dev/null |
| import {expectOple} from 'ople' | |
| // Note: Unique function values are expected. | |
| export function forwardListeners(listenFns) { | |
| const disposeFns = new Map() | |
| const self = expectOple() | |
| hookBefore(self, { | |
| _addListener(key, fn) { | |
| if (!listenFns[key]) return | |
| disposeFns.set(fn, listenFns[key](fn)) |
It's 2024. You should use tsup instead of this.
🔥 Blazing fast builds
😇 CommonJS bundle
🌲 .mjs bundle
✨ .d.ts bundle + type-checking
| diff --git a/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm b/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm | |
| index 274f381..3b573dc 100644 | |
| --- a/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm | |
| +++ b/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm | |
| @@ -108,6 +108,15 @@ - (void)cancelRequest:(NSURLSessionDataTask *)task | |
| #pragma mark - NSURLSession delegate | |
| +#if DEBUG | |
| +- (void)URLSession:(NSURLSession *)session |
| #import <AppKit/AppKit.h> | |
| // This window becomes main and key when the app loses focus, which ensures | |
| // the "didBecomeKey" and "didBecomeMain" events are posted when they should be. | |
| @interface Nothing : NSWindow <NSWindowDelegate> | |
| - (instancetype)init; | |
| - (instancetype)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)style backing:(NSBackingStoreType)backingStoreType defer:(BOOL)flag NS_DESIGNATED_INITIALIZER; | |
| @end |