| Server IP : 54.233.248.239 / Your IP : 172.28.20.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/node_modules/chart.js/ |
Upload File : |
# Maintaining ## Release Process Chart.js relies on [Travis CI](https://travis-ci.org/) to automate the library [releases](https://github.com/chartjs/Chart.js/releases). ### Releasing a New Version 1. draft release notes on [GitHub](https://github.com/chartjs/Chart.js/releases/new) for the upcoming tag 1. update `master` `package.json` version using [semver](http://semver.org/) semantic 1. merge `master` into the `release` branch 1. follow the build process on [Travis CI](https://travis-ci.org/chartjs/Chart.js) > **Note:** if `master` is merged in `release` with a `package.json` version that already exists, the tag creation fails and the release process is aborted. ### Automated Tasks Merging into the `release` branch kicks off the automated release process: * build of the `dist/*.js` files * `bower.json` is generated from `package.json` * `dist/*.js` and `bower.json` are added to a detached branch * a tag is created from the `package.json` version * tag (with dist files) is pushed to GitHub Creation of this tag triggers a new build: * `Chart.js.zip` package is generated, containing dist files and examples * `dist/*.js` and `Chart.js.zip` are attached to the GitHub release (downloads) * a new npm package is published on [npmjs](https://www.npmjs.com/package/chart.js) Finally, [cdnjs](https://cdnjs.com/libraries/Chart.js) is automatically updated from the npm release. ### Further Reading * [Travis GitHub releases](https://github.com/chartjs/Chart.js/pull/2555) * [Bower support and dist/* files](https://github.com/chartjs/Chart.js/issues/3033) * [cdnjs npm auto update](https://github.com/cdnjs/cdnjs/pull/8401)