Socket
Socket
Sign inDemoInstall

storybook-addon-turbo-build

Package Overview
Dependencies
109
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    storybook-addon-turbo-build

Storybook Addon to improve build performance


Version published
Weekly downloads
68K
increased by17.68%
Maintainers
1
Install size
10.5 MB
Created
Weekly downloads
 

Changelog

Source

[2.0.1] - 2023-05-01

Fixed

  • Fix esbuild-loader incorrectly determines file type (#52).

Readme

Source

storybook-addon-turbo-build

npm license code style: prettier

A Storybook addon that improves your Storybook build time by tweaking webpack configuration. Compatible with Storybook v6.

Improvements such as replacing Terser with ESBuild or disabling source map generation reduces your build time, so you can save your CI time or operate development cycle more quickly.

Important note

For Storybook v7 (and later versions) users

This addon does not work with Storybook v7 and later versions. Those newer Storybook versions vastly improved build-time performance by adopting more efficient tools such as Vite or webpack 5. If you want to optimise your build performance further more, please tweak your configuration manually.

For Storybook v6 users

Storybook already does various build performance improvements. This addon mainly improves cold build, which is when you build Storybook without caches under your node_modules/.cache. There could be barely noticable differences in cache enabled builds. You should evaluate the build time before integrating this addon into your workflow.

Installation

$ npm i -D storybook-addon-turbo-build

# in other package managers
$ yarn add -D storybook-addon-turbo-build
$ pnpm i -D storybook-addon-turbo-build

Getting Started

Add this line in your .storybook/main.js.

 module.exports = {
   stories: [
     "../stories/**/*.stories.mdx",
     "../stories/**/*.stories.@(js|jsx|ts|tsx)",
   ],
   addons: [
     "@storybook/addon-links",
     "@storybook/addon-essentials",
+    "storybook-addon-turbo-build"
   ],
 };

Configurations

You can customize modifications to webpack config through preset options.

// .storybook/main.js
module.exports = {
  // ...
  addons: [
    // ...
    {
      name: "storybook-addon-turbo-build",
      options: {
        // Please refer below tables for available options
        optimizationLevel: 2,
      },
    },
  ],
};

Available Options

Option NameDescriptionAvailable ValuesDefault Value
optimizationLevelLevel of build speed optimization (See Optimization Levels)0 ~ 31
esbuildMinifyOptionsOptions for esbuild via ESBuildMinifyPluginobject (Docs){ target: "es2015" }
removeProgressPluginWhether to remove ProgressPluginbooleanprocess.env.NODE_ENV === "production"
disableSourceMapWhether to disable source map generationbooleanprocess.env.NODE_ENV === "production"
managerTranspilerManager Webpack loader configuration that will replace babel-loader withObject (loader config) or Function (LoaderReplacer)Function returns a loader config object for esbuild-loader when Optimization Level >= 2, undefined otherwise
previewTranspilerPreview Webpack loader configuration that will replace babel-loader withObject (loader config) or Function (LoaderReplacer)Function returns a loader config object for esbuild-loader when Optimization Level >= 3, undefined otherwise
LoaderReplacer

LoaderReplacer is a function that takes loader config object and rule then returns a new loader config object. Return null to remove the matching loader instead of to replace.

// Type Definition
type LoaderReplacer = (
  loader: webpack.RuleSetUseItem,
  rule: webpack.RuleSetRule
) => webpack.RuleSetUseItem | null;
// Replace babel-loader with swc-loader in Preview Webpack
{
  previewTranspiler(loader, rule) {
    return {
      loader: "swc-loader",
      options: {/* ... */}
    }
  }
}

// Simply remove babel-loader from Manager Webpack
{
  managerTranspiler() {
    return null
  }
}

Optimization Levels

0

No optimization. The preset just returns given webpack configuration.

1

Safe optimizations. You'll get enough build performance boost with this level.

  • Use ESBuild for minification instead of Terser
  • Disables source map generation when NODE_ENV=production
  • Disables webpack's ProgressPlugin when NODE_ENV=production
2

Aggressive optimizations. This would improve build speed slightly (probably about 1s, depends on machine) and may causes an error if you're using community addons.

  • Replace babel-loader with ESBuild in Manager (Storybook UI, Addons)
3

Dangerous optimizations. If your project is relying on Babel, this probably will break the build. But will dramatically increases build performance especially when your project has a lot of files (stories).

  • Replace babel-loader with ESBuild in Preview (Canvas, Docs Addon)

Limitations

ES5 Transpilation

Currently ESBuild does not fully support transpilation to ES5 (yet). If you set optimization level to higher than 1, your bundle might not work on browsers support only up to ES5.

Bundle size

Since the preset replaces Terser with ESBuild, you may observe some file size differences. But it should be very small and does not bring noticable loading performance impact.

Keywords

FAQs

Last updated on 01 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc