module-sort
v0.0.3
Published
Sort imports for ES6 scripts
Downloads
2
Readme
module-sort
An ECMAScript 6 syntax aware import sorter.
Installation
You can install module-sort using npm:
npm install -g module-sort
Usage
The CLI tool takes one file and print the import-sorted file on STDOUT:
module-sort test.js
You can also use this package as an library:
import ImportSorter from './import-sorter';
new ImportSorter(content).sort(); // return code with sorted imports