1.0.0 • Published 5 years ago

fis-parser-es6-babel-lpchen v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

fis-parser-es6-babel-lpchen

NPM version Dependency Status License

A parser plugin for fis to turn ES6+ code into ES5 friendly code with babel.

Usage

$ npm install -g fis
$ npm install -g fis-parser-es6-babel-lpchen

fis-conf.js

fis

fis.config.set('project.fileType.text', 'es6');
fis.config.set('modules.parser.es6', 'es6-babel');
fis.config.set('roadmap.ext.es6', 'js');

fis3

fis.set('project.fileType.text', 'es6');
fis.match('*.es6', {
    rExt: '.js',
    parser: fis.plugin('es6-babel-lpchen', {})
});

License

MIT

1.0.0

5 years ago