0.1.7 • Published 4 years ago
@shopify/argo-webpack-hot-client v0.1.7
@shopify/argo-webpack-hot-client
This package provides utilities for automatically reloading an Argo 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/argo-webpack-hot-client --devUsage
You’ll reference two parts of this package in your webpack configuration:
- Include the @shopify/argo-webpack-hot-client/workerfile in an array of files for theentryconfig.
- Import the ArgoHotClientplugin 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 {ArgoHotClient} from '@shopify/argo-webpack-hot-client';
export function createWebpackConfig() {
  return {
    // Rest of config...
    entry: [
      // Make sure this entry appears first!
      '@shopify/argo-webpack-hot-client/worker',
      // Other entries
      'app/index',
    ],
    plugins: [
      // The order of your webpack plugins usually doesn’t matter
      new ArgoHotClient(),
    ],
  };
}