Skip to content

Commit

Permalink
Merge branch 'master' into chris--typescript-vx-glyph
Browse files Browse the repository at this point in the history
  • Loading branch information
williaster committed Oct 4, 2019
2 parents 1564e28 + bc1e914 commit 454ba59
Show file tree
Hide file tree
Showing 38 changed files with 190 additions and 126 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ logs/
.eslintcache/
.idea/
.npm/
.next/
.vscode/
.yarnclean

Expand Down
60 changes: 60 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- [v0.0.192](#v00192)
- [v0.0.191](#v00191)
- [v0.0.190](#v00190)
- [v0.0.189](#v00189)
Expand Down Expand Up @@ -83,6 +84,65 @@

------

# v0.0.192

See [#484](https://github.com/hshoff/vx/pull/484) for details.

#### :boom: Breaking Changes

- [breaking] Deprecate `build/` and `dist/`, use `lib/` and `esm/` instead
- [breaking] Deprecate umd builds

#### :house: Internal

- use `babel` not `rollup`
- use `yarn` not `npm`
- this will enable `workspaces` so that we can push all config to the root instead of duplicating across every package as is the case now
- Stricter linting rules (e.g., `.jsx` required for `React` files)


#### :trophy: Contributors

- [williaster](https://github.com/williaster)

```
Changes:
- @vx/annotation: 0.0.190 => 0.0.192
- @vx/axis: 0.0.191 => 0.0.192
- @vx/bounds: 0.0.189 => 0.0.192
- @vx/boxplot: 0.0.190 => 0.0.192
- @vx/brush: 0.0.189 => 0.0.192
- @vx/chord: 0.0.189 => 0.0.192
- @vx/clip-path: 0.0.189 => 0.0.192
- @vx/curve: 0.0.189 => 0.0.192
- @vx/demo: 0.0.191 => 0.0.192
- @vx/drag: 0.0.189 => 0.0.192
- @vx/event: 0.0.189 => 0.0.192
- @vx/geo: 0.0.190 => 0.0.192
- @vx/glyph: 0.0.190 => 0.0.192
- @vx/gradient: 0.0.189 => 0.0.192
- @vx/grid: 0.0.190 => 0.0.192
- @vx/group: 0.0.190 => 0.0.192
- @vx/heatmap: 0.0.190 => 0.0.192
- @vx/hierarchy: 0.0.190 => 0.0.192
- @vx/legend: 0.0.190 => 0.0.192
- @vx/marker: 0.0.190 => 0.0.192
- @vx/mock-data: 0.0.189 => 0.0.192
- @vx/network: 0.0.190 => 0.0.192
- @vx/pattern: 0.0.189 => 0.0.192
- @vx/point: 0.0.189 => 0.0.192
- @vx/responsive: 0.0.189 => 0.0.192
- @vx/scale: 0.0.190 => 0.0.192
- @vx/shape: 0.0.190 => 0.0.192
- @vx/stats: 0.0.190 => 0.0.192
- @vx/text: 0.0.191 => 0.0.192
- @vx/threshold: 0.0.190 => 0.0.192
- @vx/tooltip: 0.0.189 => 0.0.192
- @vx/voronoi: 0.0.190 => 0.0.192
- @vx/vx: 0.0.191 => 0.0.192
- @vx/zoom: 0.0.189 => 0.0.192
```

# v0.0.191

See [#487](https://github.com/hshoff/vx/pull/487) for details.
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "0.0.191",
"version": "0.0.192",
"command": {
"publish": {
"allowBranch": "master"
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"@airbnb/config-typescript": "^2.0.0",
"@airbnb/nimbus": "^2.0.0",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/react-test-renderer": "^16.9.0",
"coveralls": "^3.0.6",
Expand Down Expand Up @@ -117,6 +118,7 @@
{
"files": "*.{js,jsx,ts,tsx}",
"rules": {
"no-useless-rename": "off",
"linebreak-style": "off",
"operator-linebreak": "off",
"no-use-before-define": "off",
Expand All @@ -131,6 +133,7 @@
"import/prefer-default-export": "off",
"promise/param-names": "off",
"react/sort-comp": "off",
"react/jsx-curly-brace-presence": "off",
"react/jsx-filename-extension": "off",
"react/jsx-no-literals": "off",
"react/jsx-props-no-spreading": "off",
Expand Down
8 changes: 4 additions & 4 deletions packages/vx-annotation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/annotation",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx annotation",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -33,9 +33,9 @@
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {
"@vx/group": "0.0.190",
"@vx/point": "0.0.189",
"@vx/shape": "0.0.190",
"@vx/group": "0.0.192",
"@vx/point": "0.0.192",
"@vx/shape": "0.0.192",
"classnames": "^2.2.5",
"prop-types": "^15.5.10"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/vx-axis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/axis",
"version": "0.0.191",
"version": "0.0.192",
"description": "vx axis",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -30,10 +30,10 @@
},
"homepage": "https://github.com/hshoff/vx#readme",
"dependencies": {
"@vx/group": "0.0.190",
"@vx/point": "0.0.189",
"@vx/shape": "0.0.190",
"@vx/text": "0.0.191",
"@vx/group": "0.0.192",
"@vx/point": "0.0.192",
"@vx/shape": "0.0.192",
"@vx/text": "0.0.192",
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-bounds/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/bounds",
"version": "0.0.189",
"version": "0.0.192",
"description": "Utilities to make your life with bounding boxes better",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/vx-boxplot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/boxplot",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx box plot",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"homepage": "https://github.com/hshoff/vx#readme",
"dependencies": {
"@vx/group": "0.0.190",
"@vx/group": "0.0.192",
"classnames": "^2.2.5",
"prop-types": "^15.5.10"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-brush/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/brush",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx brush",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-chord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/chord",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx group",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-clip-path/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/clip-path",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx clip-path",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-curve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/curve",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx curve",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
64 changes: 32 additions & 32 deletions packages/vx-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/demo",
"version": "0.0.191",
"version": "0.0.192",
"description": "vx demo",
"repository": "https://github.com/hshoff/vx",
"scripts": {
Expand All @@ -16,37 +16,37 @@
"author": "@hshoff",
"license": "MIT",
"dependencies": {
"@vx/annotation": "0.0.190",
"@vx/axis": "0.0.191",
"@vx/boxplot": "0.0.190",
"@vx/brush": "0.0.189",
"@vx/chord": "0.0.189",
"@vx/clip-path": "0.0.189",
"@vx/curve": "0.0.189",
"@vx/drag": "0.0.189",
"@vx/event": "0.0.189",
"@vx/geo": "0.0.190",
"@vx/glyph": "0.0.190",
"@vx/gradient": "0.0.189",
"@vx/grid": "0.0.190",
"@vx/group": "0.0.190",
"@vx/heatmap": "0.0.190",
"@vx/hierarchy": "0.0.190",
"@vx/legend": "0.0.190",
"@vx/marker": "0.0.190",
"@vx/mock-data": "0.0.189",
"@vx/network": "0.0.190",
"@vx/pattern": "0.0.189",
"@vx/point": "0.0.189",
"@vx/responsive": "0.0.189",
"@vx/scale": "0.0.190",
"@vx/shape": "0.0.190",
"@vx/stats": "0.0.190",
"@vx/text": "0.0.191",
"@vx/threshold": "0.0.190",
"@vx/tooltip": "0.0.189",
"@vx/voronoi": "0.0.190",
"@vx/zoom": "0.0.189",
"@vx/annotation": "0.0.192",
"@vx/axis": "0.0.192",
"@vx/boxplot": "0.0.192",
"@vx/brush": "0.0.192",
"@vx/chord": "0.0.192",
"@vx/clip-path": "0.0.192",
"@vx/curve": "0.0.192",
"@vx/drag": "0.0.192",
"@vx/event": "0.0.192",
"@vx/geo": "0.0.192",
"@vx/glyph": "0.0.192",
"@vx/gradient": "0.0.192",
"@vx/grid": "0.0.192",
"@vx/group": "0.0.192",
"@vx/heatmap": "0.0.192",
"@vx/hierarchy": "0.0.192",
"@vx/legend": "0.0.192",
"@vx/marker": "0.0.192",
"@vx/mock-data": "0.0.192",
"@vx/network": "0.0.192",
"@vx/pattern": "0.0.192",
"@vx/point": "0.0.192",
"@vx/responsive": "0.0.192",
"@vx/scale": "0.0.192",
"@vx/shape": "0.0.192",
"@vx/stats": "0.0.192",
"@vx/text": "0.0.192",
"@vx/threshold": "0.0.192",
"@vx/tooltip": "0.0.192",
"@vx/voronoi": "0.0.192",
"@vx/zoom": "0.0.192",
"classnames": "^2.2.5",
"d3-array": "^1.1.1",
"d3-collection": "^1.0.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/vx-drag/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/drag",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx drag",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {
"@vx/event": "0.0.189",
"@vx/event": "0.0.192",
"prop-types": "^15.5.10"
}
}
4 changes: 2 additions & 2 deletions packages/vx-event/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/event",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx event",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -30,6 +30,6 @@
"access": "public"
},
"dependencies": {
"@vx/point": "0.0.189"
"@vx/point": "0.0.192"
}
}
4 changes: 2 additions & 2 deletions packages/vx-geo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/geo",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx geo",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"homepage": "https://github.com/hshoff/vx#readme",
"dependencies": {
"@vx/group": "0.0.190",
"@vx/group": "0.0.192",
"classnames": "^2.2.5",
"d3-geo": "^1.11.3",
"prop-types": "^15.5.10"
Expand Down
4 changes: 2 additions & 2 deletions packages/vx-glyph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/glyph",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx glyph",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -40,7 +40,7 @@
"@types/classnames": "^2.2.9",
"@types/d3-shape": "^1.3.1",
"@types/react": "*",
"@vx/group": "0.0.190",
"@vx/group": "0.0.192",
"classnames": "^2.2.5",
"d3-shape": "^1.2.0",
"prop-types": "^15.6.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-gradient/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/gradient",
"version": "0.0.189",
"version": "0.0.192",
"description": "vx gradient",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/vx-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/grid",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx grid",
"sideEffects": false,
"main": "lib/index.js",
Expand Down Expand Up @@ -33,9 +33,9 @@
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {
"@vx/group": "0.0.190",
"@vx/point": "0.0.189",
"@vx/shape": "0.0.190",
"@vx/group": "0.0.192",
"@vx/point": "0.0.192",
"@vx/shape": "0.0.192",
"classnames": "^2.2.5",
"prop-types": "^15.6.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vx-group/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vx/group",
"version": "0.0.190",
"version": "0.0.192",
"description": "vx group",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
Loading

0 comments on commit 454ba59

Please sign in to comment.