@swc/plugin-prefresh
v5.0.0
Published
SWC plugin for preact refresh
Downloads
3,100
Readme
@swc/plugin-prefresh
The SWC implementation of the prefresh babel plugin.
Usage
Prefresh babel plugin is a forked equivalent of the react-refresh babel plugin difference being that we need a way to memoize createContext between HMR.
And SWC has built-in React Refresh transformation, therefore, this plugin only implements the createContext
processing part and need to be used with jsc.transform.react.refresh
.
.swcrc:
{
"jsc": {
"experimental": {
"plugins": [
[
// enable prefresh specific transformation
"@swc/plugin-prefresh",
{
// the customizable preact name, default is `["preact", "preact/compat", "react"]`
"library": ["preact-like-framework"]
}
]
]
},
"parser": {
"jsx": true
},
"transform": {
"react": {
"development": true,
"refresh": true, // enable react refresh transformation
}
}
}
}
${CHANGELOG}