at path:
ROOT
/
sistema
/
vendors
/
chart.js
/
MAINTAINING.md
run:
R
W
Run
dist
DIR
2020-11-18 02:18:58
R
W
Run
docs
DIR
2020-11-18 02:18:58
R
W
Run
samples
DIR
2020-11-18 02:19:00
R
W
Run
src
DIR
2020-11-18 02:19:02
R
W
Run
test
DIR
2020-11-18 02:19:04
R
W
Run
.bower.json
588 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
.editorconfig
270 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
.eslintignore
16 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
.eslintrc.yml
71 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
.htmllintrc
292 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
LICENSE.md
1.06 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
MAINTAINING.md
1.61 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
README.md
2.99 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
book.json
500 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
bower.json
328 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
composer.json
547 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
gulpfile.js
7.24 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
karma.conf.js
1.38 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
package.json
1.51 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
MAINTAINING.md
Save
# 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)