@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
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 --devUsage
You’ll reference two parts of this package in your webpack configuration:
- Include the
@shopify/ui-extensions-webpack-hot-client/workerfile in an array of files for theentryconfig. - Import the
UIExtensionsHotClientplugin and include it in your webpack configuration. This plugin should not be used in production builds. It also includes webpack’sHotModuleReplacementPluginautomatically, 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(),
],
};
}