Skip to content

Commit

Permalink
Fix Netlify links (.com -> .app)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrunel committed Feb 28, 2021
1 parent f8752ec commit 7109776
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Requires [Chart.js](https://github.com/chartjs/Chart.js/releases) **2.6.0** or l

## Documentation

- [Installation](https://chartjs-plugin-deferred.netlify.com/installation)
- [Options](https://chartjs-plugin-deferred.netlify.com/options)
- [Samples](https://chartjs-plugin-deferred.netlify.com/samples)
- [Installation](https://chartjs-plugin-deferred.netlify.app/installation)
- [Options](https://chartjs-plugin-deferred.netlify.app/options)
- [Samples](https://chartjs-plugin-deferred.netlify.app/samples)

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
* [Installation](installation.md)
* [Options](options.md)
* [Samples](https://chartjs-plugin-deferred.netlify.com/samples)
* [Samples](https://chartjs-plugin-deferred.netlify.app/samples)
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ gulp.task('netlify', ['build', 'docs', 'samples'], function() {
);

return streams
.pipe(streamify(replace(/https?:\/\/chartjs-plugin-deferred\.netlify\.com\/?/g, '/', {skipBinary: true})))
.pipe(streamify(replace(/https?:\/\/chartjs-plugin-deferred\.netlify\.app\/?/g, '/', {skipBinary: true})))
.pipe(gulp.dest(out));
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chartjs-plugin-deferred",
"homepage": "https://chartjs-plugin-deferred.netlify.com",
"homepage": "https://chartjs-plugin-deferred.netlify.app",
"description": "Chart.js plugin to defer initial chart updates",
"version": "1.0.1",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion samples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</div>
<div class="caption"><a href="http://www.chartjs.org">Chart.js</a> plugin to display labels on data</div>
<div class="links">
<a class="btn btn-docs" href="https://chartjs-plugin-deferred.netlify.com">Documentation</a>
<a class="btn btn-docs" href="https://chartjs-plugin-deferred.netlify.app">Documentation</a>
<a class="btn btn-gh" href="https://github.com/chartjs/chartjs-plugin-deferred">GitHub</a>
</div>
</div>
Expand Down

0 comments on commit 7109776

Please sign in to comment.