@shopify/ui-extensions-webpack-hot-client
TypeScript icon, indicating that this package has built-in type declarations

0.2.2 • Public • Published

@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 the entry 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’s HotModuleReplacementPlugin 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(),
    ],
  };
}

Readme

Keywords

none

Package Sidebar

Install

npm i @shopify/ui-extensions-webpack-hot-client

Weekly Downloads

77

Version

0.2.2

License

MIT

Unpacked Size

145 kB

Total Files

30

Last publish

Collaborators

  • jaykay101
  • mishsmelle
  • shopify-dep
  • jaimie.rockburn
  • shopify-admin
  • maryharte
  • pmoloney89
  • netlohan