Skip to content

Commit 3616db9

Browse files
committed
add partial bundle index files
1 parent d96e5e1 commit 3616db9

File tree

6 files changed

+118
-0
lines changed

6 files changed

+118
-0
lines changed

lib/index-basic.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
12+
var Core = require('./core');
13+
14+
Core.register([
15+
require('./bar'),
16+
require('./pie')
17+
]);
18+
19+
module.exports = Core;

lib/index-cartesian.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 Core = require('./core');
12+
13+
Core.register([
14+
require('./bar'),
15+
require('./box'),
16+
require('./heatmap'),
17+
require('./histogram'),
18+
require('./histogram2d'),
19+
require('./histogram2dcontour'),
20+
require('./pie'),
21+
require('./contour'),
22+
require('./scatterternary')
23+
]);
24+
25+
module.exports = Core;

lib/index-geo.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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 Core = require('./core');
12+
13+
Core.register([
14+
require('./scattergeo'),
15+
require('./choropleth')
16+
]);
17+
18+
module.exports = Core;

lib/index-gl2d.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 Core = require('./core');
12+
13+
// Load all trace modules
14+
Core.register([
15+
require('./scattergl'),
16+
require('./heatmapgl'),
17+
require('./contourgl')
18+
]);
19+
20+
module.exports = Core;

lib/index-gl3d.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 Core = require('./core');
12+
13+
Core.register([
14+
require('./scatter3d'),
15+
require('./surface'),
16+
require('./mesh3d')
17+
]);
18+
19+
module.exports = Core;

lib/index-mapbox.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 Core = require('./core');
12+
13+
Core.register([
14+
require('./scattermapbox')
15+
]);
16+
17+
module.exports = Core;

0 commit comments

Comments
 (0)