Fy

Results 20 issues of Fy

# Minimal reproduce repo: [here](https://github.com/JSerFeng/napi-rs-issue) Reproduce: ``` pnpm install pnpm run build ``` Now index.d.ts is expected. Then we just modify crates/core, like add a blank line anywhere, then run...

## Summary Add simple ignore option for copy-plugin. ## Related issue (if exists) ## Types of changes - [ ] Docs change / Dependency upgrade - [ ] Bug fix...

team

Use chunkGraph from hook context instead of compilation ## Summary ### 🤖 Generated by Copilot at cc6d740 This pull request refactors and improves the runtime module system for webpack. It...

PR: unreviewed
PR: conflict

### Describe the bug Currently SWC CSS modules fail to transpile ```css .foo:global(.bar).baz {} ``` but do transpile follow ing successfully ```css .foo :global(.bar).baz {} ``` You can reproduce this...

C-bug

### Describe the bug If I have a class Foo extends Bar, access `this` inside a fn decl, the output code declare a _this variable to store this, however it...

C-bug

` const prevVNode = h('div', null, [ h('p', { key: 'a' }, '节点1'), h('p', { key: 'b' }, '节点2') ]) // 新的 VNode const nextVNode = h('div', null, [ h('p',...

## Summary Remove old treeshaking. Remove builtins.treeshaking ## Checklist - [ ] Tests updated (or not required). - [ ] Documentation updated (or not required).

team

## Summary What is lazy compilation ? The easiest mental model would be: Imagine some code that you may not use at the first run, for example, when you click...

release: feature

I modify a module like: ```diff import { foo + bar } from "./components/index"; console.log(foo); + console.log(bar); const App = () => { return ; }; export default App; ```...