Skip to content

Commit 55ed18c

Browse files
committed
[maybe?] add 'finance' partial bundle
1 parent 80e8a91 commit 55ed18c

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

lib/index-finance.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* Copyright 2012-2016, Plotly, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
var Plotly = require('./core');
12+
13+
Plotly.register([
14+
require('./bar'),
15+
require('./histogram'),
16+
require('./pie'),
17+
require('./ohlc'),
18+
require('./candlestick')
19+
]);
20+
21+
module.exports = Plotly;

tasks/util/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var pathToTopojsonSrc = path.join(
1313
);
1414

1515
var partialBundleNames = [
16-
'basic', 'cartesian', 'geo', 'gl3d', 'gl2d', 'mapbox'
16+
'basic', 'cartesian', 'geo', 'gl3d', 'gl2d', 'mapbox', 'finance'
1717
];
1818

1919
var partialBundlePaths = partialBundleNames.map(function(name) {

0 commit comments

Comments
 (0)