@chisquare-tech/jsx-core
v0.2.13
Published
## JSX core
Readme
Chisquare
JSX core
Introduction
Supported Platforms
- Browser
- Node.js (Javascript/Typescript)
Installation
- NPM
$ npm i @chisquare-tech/jsx-core- CDN
Usage & API
Commands
DTS scaffolds your new library inside /src.
To run DTS, use:
npm start # or yarn startThis builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
To do a one-off build, use npm run build or yarn build.
To run tests, use npm test or yarn test.
Custom Commands
# build and sync locally
$ node ./build --env=dev --sync=true
# build and publish
$ node ./build --env=prod --sync=true --version=x.x.xPublish
$ git tag <version e.g v0.0.0>
$ git push origin <version>