0.4.1 • Published 1 month ago

swc-plugin-add-display-name v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

swc-plugin-add-display-name

Automatically add displayName to top-level React functional components.

  • const Component = () => <jsx />
  • function Component() { return <jsx /> }
  • const Context = createContext()

If you have other situations that needs to add displayName, feel free to open an issue or PR!

Installation

Install with your favorite package manager as devDependency.

npm i -D swc-plugin-add-display-name

Add plugin to wherever you have an SWC config (e.g. .swcrc file, swc-loader config, etc). Make sure either jsx or tsx option is turned on depending on the syntax you are using.

// JavaScript
{
  jsc: {
    parser: {
      jsx: true,
    },
    experimental: {
      plugins: [
        ['swc-plugin-add-display-name', {}],
      ],
    },
  },
}

// TypeScript
{
  jsc: {
    parser: {
      syntax: 'typescript',
      tsx: true,
    },
    experimental: {
      plugins: [
        ['swc-plugin-add-display-name', {}],
      ],
    }
  },
}

Configuration

This plugin currently has no configuration. However you have to leave an empty object to meet SWC's API schema.

If you'd like to disable this plugin in production build, remove this plugin from the plugins list.

Examples

// Before
export const Component = () => <div />;

// After
export const Component = () => <div />;
Component.displayName = "Component";
// Before
const Component = forwardRef((props, ref) => <div />);

// After
const Component = forwardRef((props, ref) => <div />);
Component.displayName = "Component";
// Before
export function Component() { return <div />; }

// After
export function Component() { return <div />; }
Component.displayName = "Component";

License

MIT

0.4.1

1 month ago

0.4.0

2 months ago

0.3.0

7 months ago

0.3.2

5 months ago

0.3.1

7 months ago

0.2.3

7 months ago

0.2.1

8 months ago

0.2.0

11 months ago

0.2.2

8 months ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago