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): 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 ```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 ## API Reference

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

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

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

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