XLSX Spreadsheets parser for DocFlux
npm install @harvest-profit/doc-flux-spreadsheetsAllows you to create XLSX spreadsheets using DocFlux.
jsx
import { DocFlux } from '@harvest-profit/doc-flux';
/* @jsx DocFlux.createElement /export default ExampleComponent = () => (
People
Name
Age
John
24
Jill
25
);
`Development
Clone this repo, and begin committing changes. PRs are preferred over committing directly to master.To run tests locally on your machine, run the following:
`bash
yarn run test
`To preview documentation locally on your machine, run the following:
`bash
yarn run build-docs
`After merging your pull request, consider updating the documentation with the following command:
`bash
yarn run publish-docs
`To deploy a new version to NPM, bump the version number, commit/merge to
master, and run the following:
`bash
yarn run clean
yarn run buildEither NPM
npm publish
Or Yarn, they do the same thing
yarn publish
``