0.6.5 • Published 1 year ago

rspack-plugin-prefresh v0.6.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

rspack-plugin-prefresh

npm version

Setup

npm i -s rspack-plugin-prefresh
## OR
yarn add rspack-plugin-prefresh

Then add it to your rspack.config.js config:

import PreactRefreshPlugin from "rspack-plugin-prefresh";

export default {
  plugins: [PreactRefreshPlugin()],
};

Using hooks

If you're using preact/hooks you'll need add following config to builtin:swc-loader:

{
  "jsc:": {
    "transform": {
      "react": {
        "development": true,
        "refresh": true
    }
  }
}

Best practices

Recognition

We need to be able to recognise your components, this means that components should start with a capital letter and hook should start with use followed by a capital letter. This allows the Babel plugin to effectively recognise these.

Do note that a component as seen below is not named.

export default () => {
  return <p>Want to refresh</p>;
};

Instead do:

const Refresh = () => {
  return <p>Want to refresh</p>;
};

export default Refresh;

When you are working with HOC's be sure to lift up the displayName so we can recognise it as a component.

0.6.5

1 year ago