Oops, forgot to export symbols.

This commit is contained in:
Mike Bostock 2016-05-11 08:51:08 -07:00
Родитель c77c2b7f43
Коммит 6e5c47cf42
3 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,7 @@ This branch contains the prerelease of D3 4.0. This API is unstable and may chan
If you use NPM, `npm install d3@next`. Otherwise, download the [latest release](https://github.com/mbostock/d3/releases/latest). The released bundle supports AMD, CommonJS, and vanilla environments. Create a custom build using [Rollup](https://github.com/rollup/rollup) or your preferred bundler. You can also load directly from [d3js.org](https://d3js.org):
```html
<script src="https://d3js.org/d3.v4.0.0-alpha.36.min.js"></script>
<script src="https://d3js.org/d3.v4.0.0-alpha.37.min.js"></script>
```
## API Reference

Просмотреть файл

@ -380,6 +380,7 @@ export {
export {
creator,
customEvent,
event,
matcher,
mouse,
@ -434,6 +435,10 @@ export {
forceY
} from "d3-force";
export {
drag
} from "d3-drag";
export {
voronoi
} from "d3-voronoi";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "d3",
"version": "4.0.0-alpha.36",
"version": "4.0.0-alpha.37",
"publishConfig": {
"tag": "next"
},