@bubblydoo/esbuild-adobe-protocol-plugin
v0.0.2
Published
Reusable esbuild plugin to strip adobe: protocol from module specifiers
Keywords
Readme
@bubblydoo/esbuild-adobe-protocol-plugin
Tiny reusable esbuild plugin that strips the adobe: protocol from module specifiers and marks them as external.
Example:
adobe:photoshop->photoshopadobe:uxp->uxp
Install
pnpm add -D @bubblydoo/esbuild-adobe-protocol-pluginUsage
import { stripAdobeProtocolPlugin } from '@bubblydoo/esbuild-adobe-protocol-plugin';
// esbuild
plugins: [
stripAdobeProtocolPlugin(),
];
// tsup
esbuildPlugins: [
stripAdobeProtocolPlugin(),
];