babel-plugin-syntax-pipeline
v0.1.0
Published
Allow parsing of pipeline operator
Downloads
53
Maintainers
Readme
babel-plugin-syntax-pipeline
Allow parsing of pipeline operator
|>
Proposal: mindeavor/es-pipeline-operator
Installation
npm install --save-dev babel-plugin-syntax-pipeline
# or
yarn add --dev babel-plugin-syntax-pipeline
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-pipeline"]
}
Via CLI
babel --plugins syntax-pipeline script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-pipeline"]
});
Build
npm run build
Test
npm run test
Contributing
- Fork it (https://github.com/SuperPaintman/babel-plugin-syntax-pipeline/fork)
- Create your feature branch (
git checkout -b feature/<feature_name>
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin feature/<feature_name>
) - Create a new Pull Request
Contributors
- SuperPaintman SuperPaintman - creator, maintainer