harmonify
v0.0.1
Published
A wrapup transformation allowing ES6 files
Downloads
12
Readme
Harmonify
Harmonify is a wrapup transform for requiring ECMAScript 6 files with .es6 extension directly in wrapup, in order to do this it uses @kamicane Harmonizer which is currently in alpha state
How to use it:
if you have wrapup installed globally (npm install -g wrapup
) you can do
wrup browser --transform ./index.js -r ./test.es6 > ./test.js
otherwise since I added wrapup to package.json after typing npm install
you can use:
./node_modules/.bin/wrup browser --transform ./index.js -r ./test.es6 > ./test.js