ievv_jsbase
v2.1.0
Published
General purpose ES6 utility library for common web client needs.
Downloads
113
Readme
ievv_jsbase
General purpose ES6 utility library for common web client needs.
ievv_jsbase is created to cover basic javascript needs for the https://github.com/appressoas/ievv_opensource and https://github.com/appressoas/django_cradmin python libraries, and the commersial IEVV library.
Install
$ npm install ievv_jsbase
.. or ..
$ yarn add ievv_jsbase
Docs
Read the docs online
Online docs
or build the docs locally
- Clone a local copy of the https://github.com/appressoas/ievv_jsbase git repo.
- Run
npm install
oryarn
(depending on your preferred package manager) - Run
npm run build-docs
oryarn run build-docs
(depending on your preferred package manager) - Open
docs/index.html
in a browser.
Release a new version
(for people with publish permissions for the npm package)
Build:
$ yarn run build
Update the
version
inpackage.json
.npm publish
.Git commit the changes. The commit should be
Release <version>
where<version>
is the same version as you used in (2).git tag <version>
where<version>
is the same version as you used in (2).git push && git push --tags
.
Release a new version on github
Build:
$ npm run build
Update the
version
inpackage.json
.Git commit the changes. The commit should be
Release <version>
where<version>
is the same version as you used in (2).git tag <version>
where<version>
is the same version as you used in (2).git push && git push --tags
.