@shopify/ui-extensions-webpack-hot-client
v0.2.2
Published
A custom webpack-hot-client implementation that works in the web worker environment of a UI extension
Downloads
456
Maintainers
Keywords
Readme
@shopify/ui-extensions-webpack-hot-client
This package provides utilities for automatically reloading an UI extension script when content changes. The tools provided are similar to webpack-hot-client
, but supports being run in a web worker and using the self.shopify
API for "full" reloads.
Installation
$ yarn add @shopify/ui-extensions-webpack-hot-client --dev
Usage
You’ll reference two parts of this package in your webpack configuration:
- Include the
@shopify/ui-extensions-webpack-hot-client/worker
file in an array of files for theentry
config. - Import the
UIExtensionsHotClient
plugin and include it in your webpack configuration. This plugin should not be used in production builds. It also includes webpack’sHotModuleReplacementPlugin
automatically, so do not include it manually in your configuration.
import {UIExtensionsHotClient} from '@shopify/ui-extensions-webpack-hot-client';
export function createWebpackConfig() {
return {
// Rest of config...
entry: [
// Make sure this entry appears first!
'@shopify/ui-extensions-webpack-hot-client/worker',
// Other entries
'app/index',
],
plugins: [
// The order of your webpack plugins usually doesn’t matter
new UIExtensionsHotClient(),
],
};
}