An open API service indexing awesome lists of open source software.

https://github.com/tinchoz49/parcel-plugin-transformify

Parcel plugin to run your browserify transforms
https://github.com/tinchoz49/parcel-plugin-transformify

browserify parcel plugin transform

Last synced: about 1 year ago
JSON representation

Parcel plugin to run your browserify transforms

Awesome Lists containing this project

README

          

# Parcel Transformify Plugin
> This is an **experimental** :microscope: parcel plugin to run your **browserify transforms**.

[![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard)
[![experimental](http://badges.github.io/stability-badges/dist/experimental.svg)](http://github.com/badges/stability-badges)
[![Build Status](https://travis-ci.com/tinchoz49/parcel-plugin-transformify.svg?branch=master)](https://travis-ci.com/tinchoz49/parcel-plugin-transformify)

## Usage

### Install transformify
```
$ npm install --save-dev parcel-plugin-transformify
```

### Configure your transforms using the `browserify` key in the package.json

```json
{
...
"browserify": {
"transform": [
...
]
}
}
```