Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@vivaxy/babel-folder

vivaxy21MIT0.1.1

babel from source to build

readme

babel-folder

babel from source to build

USAGE

yarn add @vivaxy/babel-folder

import babelFolder from '@vivaxy/babel-folder';

const sourceFolder = path.join(__dirname, '..', 'src');
const buildFolder = path.join(__dirname, '..', 'build');
babelFolder(/* source folder absolute path */ sourceFolder, /* output folder absolute path */ buildFolder)
    .then(() => {
        // success
    })
    .catch((ex) => {
        // error
        console.error(ex);
    });

changelog

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.1.1 (2017-05-27)

Bug Fixes

  • git: :bug:Commit missing files (9bced61)

0.1.0 (2017-04-11)

Features