solid-hot-loader

0.0.5 • Public • Published

Solid Hot Loader

This loader is intended to wrap your Solid Components for HMR automatically. At this time this plugin cannot preserve downstream state so the Component and all its children are replaced.

Installation

# NPM
$ npm install --save-dev solid-hot-loader

Usage

You need to add this library to your webpack config. Note that you should carefuly set webpack's rule condition so that solid-hot-loader is only used for actual component files.

module.exports = {
  module: {
    rules: [
      {
        test: /\.jsx/,
        use: ['solid-hot-loader'],
        // If and only if all your components are in `path/to/components` directory
        include: path.resolve(__dirname, 'path/to/components')
      }
    ]
  }
}

And you have to export each component as default export.

export default MyComponent;

/solid-hot-loader/

    Package Sidebar

    Install

    npm i solid-hot-loader

    Weekly Downloads

    9

    Version

    0.0.5

    License

    MIT

    Unpacked Size

    3.44 kB

    Total Files

    4

    Last publish

    Collaborators

    • ryansolid