Socket
Socket
Sign inDemoInstall

vite-plugin-turbosnap

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-turbosnap

Enables the use of Chromatic Turbosnap in vite storybook projects


Version published
Weekly downloads
69K
increased by9.27%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-turbosnap

NPM version

Generate a preview-stats.json file from your vite storybook project for consumption by chromatic cli to support turbosnap. Turbosnap can limit the number of files that are snapshotted by Chromatic to only those which might have changed due to the files that have changed. It is also smart enough to run all of the snapshots if certain files, like storybook config, package.json, or anything imported by preview.js has changed.

This is experimental, and may not support all project and storybook configurations, yet.

Please open an issue if you experience any trouble, and be sure to include the log file that is generated from the --diagnostics flag of chromatic-cli, as well as the cli's output using the --debug --trace-changed=expanded flags.

Setup

Prerequisites

  • A Chromatic account.
  • chromatic-cli 6.5.0 or higher.
  • @storybook/builder-vite 0.1.22 or higher.

Install

npm i --save-dev vite-plugin-turbosnap

Configuration

Add this plugin to viteFinal in your .storybook/main.js:

// .storybook/main.js

const turbosnap = require('vite-plugin-turbosnap');

module.exports = {
  core: { builder: '@storybook/builder-vite' },
  async viteFinal(config, { configType }) {
    // Turbosnap is only useful when building for production
    if (configType === 'PRODUCTION') {
      config.plugins.push(turbosnap({ rootDir: config.root }));
    }

    // ...And any other config you need to change...

    // return the customized config
    return config;
  },

Usage

When you run build-storybook to create your production storybook, an additional file will be created in the output directory, named preview-stats.json. See the chromatic turbosnap docs for more information on how to configure and use turbosnap.

How it works

The turbosnap feature of Chromatic limits the snapshots that are executed to only those which can be reliably traced back to a changed file. In order to do this, it needs to have a dependency graph of the project, so that it knows when you change button.js, for instance, that it needs to re-run not only the button.stories.js file, but also any other stories which might include your custom button component. By default, it relies on the stats file that is output from webpack, the default storybook builder. In order to use this feature with a vite project, this plugin collects information about each module being built by vite, constructs a mapping between each file and all of the files which import it, and generates a file that mimics that created by webpack, with only the information that the chromatic cli needs to perform its checks.

Credits

Thanks to Gert Hengeveld for guidance on chromatic cli changes, and to my team at Defined Networking for giving me the time to build and test this on our own chromatic storybook project.

Keywords

FAQs

Package last updated on 24 Apr 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc