Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
MUR Drupal
d3-library
Commits
15a892f4
Commit
15a892f4
authored
Jul 01, 2016
by
Mike Bostock
Browse files
Fix #2885 - missing d3-chord.
parent
ed5f8234
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
29 deletions
+9
-29
index.js
index.js
+5
-0
package.json
package.json
+1
-0
test/d3-test.js
test/d3-test.js
+3
-29
No files found.
index.js
View file @
15a892f4
...
...
@@ -425,6 +425,11 @@ export {
brushSelection
}
from
"
d3-brush
"
;
export
{
chord
,
ribbon
}
from
"
d3-chord
"
;
export
{
geoArea
,
geoBounds
,
...
...
package.json
View file @
15a892f4
...
...
@@ -43,6 +43,7 @@
"
d3-brush
"
:
"
1.0.1
"
,
"
d3-collection
"
:
"
1.0.0
"
,
"
d3-color
"
:
"
1.0.0
"
,
"
d3-chord
"
:
"
1.0.0
"
,
"
d3-dispatch
"
:
"
1.0.0
"
,
"
d3-drag
"
:
"
1.0.0
"
,
"
d3-dsv
"
:
"
1.0.0
"
,
...
...
test/d3-test.js
View file @
15a892f4
...
...
@@ -7,32 +7,6 @@ tape("version matches package.json", function(test) {
test
.
end
();
});
testExports
(
"
d3-array
"
);
testExports
(
"
d3-axis
"
);
testExports
(
"
d3-brush
"
);
testExports
(
"
d3-collection
"
);
testExports
(
"
d3-color
"
);
testExports
(
"
d3-dispatch
"
);
testExports
(
"
d3-drag
"
);
testExports
(
"
d3-dsv
"
);
testExports
(
"
d3-ease
"
);
testExports
(
"
d3-force
"
);
testExports
(
"
d3-format
"
);
testExports
(
"
d3-geo
"
);
testExports
(
"
d3-hierarchy
"
);
testExports
(
"
d3-interpolate
"
);
testExports
(
"
d3-path
"
);
testExports
(
"
d3-polygon
"
);
testExports
(
"
d3-quadtree
"
);
testExports
(
"
d3-queue
"
);
testExports
(
"
d3-random
"
);
testExports
(
"
d3-request
"
);
testExports
(
"
d3-scale
"
);
testExports
(
"
d3-selection
"
);
testExports
(
"
d3-shape
"
);
testExports
(
"
d3-time
"
);
testExports
(
"
d3-time-format
"
);
testExports
(
"
d3-timer
"
);
testExports
(
"
d3-transition
"
);
testExports
(
"
d3-voronoi
"
);
testExports
(
"
d3-zoom
"
);
for
(
var
dependency
in
require
(
"
../package.json
"
).
dependencies
)
{
testExports
(
dependency
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment