Chris Pakken

Results 12 issues of Chris Pakken

https://github.com/donavon/use-dark-mode/blob/29590271bb3a74f08975181c5ed68bd5a210ef83/src/initialize.js#L15 The global variable will only exist in node during ssr. `globalThis` === `window` in browsers and `globalThis` === `global` in node

Same error in Windows 10 and WSL2. My minimal testing setup 1) `pnpm create vite` (using the react-ts template) 2) Added the `unocss/vite` plugin to `vite.config.ts` Unocss Output from vscode:...

stale

It would be useful to expose a native way to resolve stitches css tokens from `theme`. ```js const color = theme.resolveToken('$colors$neutral400') //'#a3a3a3' ``` This would increase the interoperability with other...

feature

In Stitches 0.2, the `insertionMethod` is removed because of the transition to CSSOM. With that change, I propose some alternative API's that would grant the ability to initialize the root...

feature

Create an option for user to turn off css injection. ```js plugins: [new VanillaExtractPlugin({inject: false})] ``` ### Use Case I am writing a chrome extension and will be using the...

### What version of Bun is running? 1.1.2+c8d072c2a ### What platform is your computer? Microsoft Windows NT 10.0.19045.0 x64 ### What steps can reproduce the bug? When using pnpm package...

bug
needs investigate

### What version of Bun is running? 1.1.9+bb13798d9 ### What platform is your computer? Microsoft Windows NT 10.0.19045.0 x64 ### What steps can reproduce the bug? Bun upgrade from 1.1.8...

bug

Bug only on indexed boolean property. Works find is 'done' prop is converted to number using 0 or 1 ```tsx const db = createDB() type Todo = { id: number;...

Implement 'not equal' 'not in' filters ``` const users = await many({ where: { id: { ne: notequaltothisId } } }) ```

I am using css to target `[data-motion-pop-id]` which is applied during a `popLayout` exit transition ```css [data-motion-pop-id] { pointer-events: none; z-index: 1; } ``` If an element's `popLayout` exit transition...

bug