@metamask/snaps-browserify-plugin
Version:
A Browserify plugin to build MetaMask Snaps with Browserify
56 lines (40 loc) • 1.72 kB
Markdown
A plugin for developing [MetaMask Snaps](https://docs.metamask.io/guide/snaps.html) using [Browserify](https://browserify.org/). This can be used as alternative to the `mm-snap` CLI `build` command. It transforms the bundle to fix common issues with SES. For a list of changes the plugin makes, you can refer to [the source code](../utils/src/post-process.ts).
Use Node.js `16.0.0` or later. We recommend using [nvm](https://github.com/nvm-sh/nvm) for managing Node.js versions.
Install a dependency in your snap project using `yarn` or `npm`:
- `npm install @metamask/snaps-browserify-plugin`
- `yarn add @metamask/snaps-browserify-plugin`
```ts
import browserify from 'browserify';
const bundle = browserify();
bundle.plugin('@metamask/snaps-browserify-plugin', options);
```
All options are optional, and default to `true`.
```ts
import { Options } from '@metamask/snaps-browserify-plugin';
const options: Options = {
/**
* Whether to strip all comments from the bundle.
*/
stripComments: true,
/**
* Whether to evaluate the bundle with SES, to ensure SES compatibility.
*/
eval: true,
/**
* The path to the Snap manifest file. If set, it will be checked and automatically updated with
* the bundle's hash, if `writeManifest` is enabled. Defaults to `snap/manifest.json` in the
* current working directory.
*/
manifestPath: './snap.manifest.json',
/**
* Whether to write the updated Snap manifest file to disk. If `manifestPath` is not set, this
* option has no effect. If this is disabled, an error will be thrown if the manifest file is
* invalid.
*/
writeManifest: true,
};
```