Skip to content

Commit ccfc20b

Browse files
committed
Output -all as default
1 parent 3a8e2ee commit ccfc20b

22 files changed

+23
-52
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ Compose rich, data-bound charts from charts (like Lines and Bars) and components
1414
## Getting Started
1515

1616
1. Download the [latest release](https://github.com/CSNW/d3.compose/releases)
17-
18-
- `d3.compose-all` Includes all charts, components, extensions, and mixins
19-
- `d3.compose-mixins` Use if you're creating your own charts/components and want to use d3.compose's mixins to help
20-
- `d3.compose` Use if you're using your own charts/components and don't need mixins, charts, or components provided by d3.compose
21-
2217
2. Download the dependencies:
2318

2419
- [D3.js (>= 3.0.0)](http://d3js.org/)
@@ -40,7 +35,7 @@ Compose rich, data-bound charts from charts (like Lines and Bars) and components
4035
<script src="d3.js"></script>
4136
<script src="d3.chart.js"></script>
4237

43-
<script src="d3.compose-all.js"></script>
38+
<script src="d3.compose.js"></script>
4439

4540
<!-- Your code -->
4641
</body>

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"homepage": "https://github.com/CSNW/d3.compose",
44
"version": "0.15.15",
55
"main": [
6-
"./dist/d3.compose-all.js",
6+
"./dist/d3.compose.js",
77
"./dist/d3.compose.css"
88
],
99
"authors": [

d3.compose-mixins.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

d3.compose.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

example/debug.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
<script src="../node_modules/d3/d3.js"></script>
5151
<script src="../node_modules/d3.chart/d3.chart.js"></script>
52-
<script src="../.tmp/d3.compose-all.js"></script>
52+
<script src="../.tmp/d3.compose.js"></script>
5353

5454
<script src="../node_modules/jquery/dist/jquery.js"></script>
5555

example/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</style>
2525

2626
<script src="../node_modules/d3/d3.js"></script>
27-
<script src="../build/d3.compose-all.js"></script>
27+
<script src="../build/d3.compose.js"></script>
2828
<script src="js/data.js"></script>
2929
</head>
3030
<body>

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const banner = '/*!\n' +
2222
Build distribution version of library
2323
*/
2424
const dist_options = {minify: true, banner: true};
25-
gulp.task('build:dist:css', css(paths.css, paths.dist, dist_options));
25+
gulp.task('css', css(paths.css, paths.dist, dist_options));
2626

2727
/**
2828
Bump the bower version to match package.json
File renamed without changes.

integration/charts/bars.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div id="charts"></div>
2727

2828
<script src="../../node_modules/d3/d3.js"></script>
29-
<script src="../../build/d3.compose-all.js"></script>
29+
<script src="../../build/d3.compose.js"></script>
3030
<script type="text/javascript">
3131
var charts = d3.select('#charts');
3232
var id = 1;

integration/charts/labels.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div id="charts"></div>
2727

2828
<script src="../../node_modules/d3/d3.js"></script>
29-
<script src="../../build/d3.compose-all.js"></script>
29+
<script src="../../build/d3.compose.js"></script>
3030
<script type="text/javascript">
3131
var charts = d3.select('#charts');
3232
var id = 1;

0 commit comments

Comments
 (0)