Socket
Socket
Sign inDemoInstall

babel-plugin-named-exports-order

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-named-exports-order

Babel plugin for preserving exports order across transforms


Version published
Maintainers
1
Install size
7.82 kB
Created

Readme

Source

babel-plugin-named-exports-order

This is a babel plugin that adds an array of strings to any JS file for its named exports.

For example, the plugin would transform this:

export const a = 0;
export const b = 1;

To this:

export const a = 0;
export const b = 1;
export const __namedExportsOrder = ['a', 'b'];

Bundlers like Webpack5 are not guaranteed to preserve the original export order, but some tools need it to function properly.

It was written for Storybook, which allows users to order their "stories" based on the export order in the file, and has special logic to re-sort the stories based on __namedExportsOrder if it's present.

Usage

Install with:

yarn add babel-plugin-named-exports-order -D

Then add it to plugins in .babelrc.js:

module.exports = {
  plugins: ['babel-plugin-named-exports-order'],
};

Keywords

FAQs

Last updated on 13 Jan 2022

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