Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

@shopify/sewing-kit-plugin-quilt@0.0.2

Compare
Choose a tag to compare
@dahukish dahukish released this 23 Apr 17:23
· 1678 commits to main since this release

What's New

Port sewing-kit-plugins into quilt as sewing-kit-plugin-quilt

Most if not all external packages within this release have either been trimmed for now, or swapped for the Shopify equivalent.

Example Usage

export default createWebApp((app) => {
  app.entry('./app/index');
  app.use(
    quiltWebApp({
      assetServer: {port: 3003},
      features: ['base', 'fetch'],
      browserGroups: ['evergreen', 'latest-chrome'],
      skipBuild: true,
      graphql: {
        export: 'document',
      },
    }),
  );
});