Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CUSTOM_BUNDLE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Custom bundle
You can simply make custom bundles yourself, if none of the [distributed packages](https://github.com/plotly/plotly.js/blob/master/dist/README.md) meet your needs, or you want to make a more optimized bundle file with/without specific traces and transforms.

Clone plotly.js, move to plotly.js folder then install plotly.js dependencies:
Clone plotly.js, where the <tag_name> is one of the [these](https://github.com/plotly/plotly.js/tags):
```sh
git clone --depth 1 --branch <tag_name> https://github.com/plotly/plotly.js.git
```

Move to plotly.js folder then install plotly.js dependencies:
```sh
git clone --depth 1 https://github.com/plotly/plotly.js.git
cd plotly.js
npm i
```
Expand Down