Equinusocio
Equinusocio
I tried by removing the `workspace:*` but i get the same error. Same using `--force`
I tried but i can't create a 1:1 reproduction link since i use private packages, it would not be relevant. I tried removing all the packages in the pnpm workspace...
What kind of informations do you need? Now on node 22, i'm trying to update from v9 to v10 and i get the same error (package.json is the same as...
@Sidnioulz Is not related to bun, i'm on node 22. The fact that happens also on bun is a different story. Info before the forced update (https://github.com/storybookjs/storybook/issues/32294#issuecomment-3479539872) ``` Storybook Environment...
@vanessayuenn This isn’t stale as we mentioned a reproduction can’t be provided and isn’t related to turborepo or monorepo as shown in the comments above (it also happens in standard...
@alefragnani You can use font icon as the icon property, for example `"icon": "$(folder)"` (folder is an icon from codicon). Check this example from other extension: https://github.com/gitkraken/vscode-gitlens/blob/main/package.json#L24326C6-L24326C34 You can also...
This is a must. We need a way to look/serach codepoints as hex in order to use them manually inside css or in other files. I tried creating a custom...
We're facing same issue on NextJs, wich uses this plugin under the hood
We fixed this by disabling calc plugin in css-nano presets: ```js return { plugins: { cssnano: { preset: [ 'default', { calc: false, }, ], }, }, }; ``` The...