babel-preset-sui

A preset for all babel-transpiled javascript of the SUI family.

Usage no npm install needed!

<script type="module">
  import babelPresetSui from 'https://cdn.skypack.dev/babel-preset-sui';
</script>

README

babel-preset-sui

A preset for all babel-transpiled javascript of the SUI family.

It provides:

  • Unified code transformations.
  • Protection on arbitrary use of experimental features that may been deprecated.

Installation

$ npm install babel-preset-sui --save-dev

Presets and plugins

This preset always includes the following plugins and presets:

If react or preact is installed:

Usage

Via package.json (Recommended)

package.json

{
  "name": "my-awesome-package",
  "version": "1.0.0",
  "babel": {
    "presets": ["sui"]
  }
}

Via .babelrc

.babelrc

{
  "presets": ["sui"]
}

Contributing

Please refer to the main repo contributing info.