Skip to content
Merged
Changes from 4 commits
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
10 changes: 7 additions & 3 deletions CUSTOM_BUNDLE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# 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.

Install 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
npm i plotly.js
cd node_modules/plotly.js
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
cd plotly.js
npm i
```

Expand Down