Skip to content

Commit 20923ac

Browse files
authored
Merge pull request #222 from osmlab/v1.8.2
Add createBbox to the named exports
2 parents 7cdfd37 + fb7ac37 commit 20923ac

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Log of changes since the 1.1.0 version
44

5+
#### 1.8.2
6+
7+
- Add createBbox function to the named exports
8+
59
#### 1.8.1
610

711
- Update real-changesets-parser to 1.3.0

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "changeset-map",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"description": "Provide visualization of changesets to OSMCha & to the OSM community",
55
"main": "dist/bundle.js",
66
"scripts": {

rollup.plugin.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export default {
3434
'Children',
3535
'Component',
3636
'PropTypes',
37-
'createElement'
37+
'createElement',
38+
'createBbox'
3839
],
3940
'node_modules/react-dom/index.js': ['render']
4041
}

rollup.website.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export default {
3535
'Children',
3636
'Component',
3737
'PropTypes',
38-
'createElement'
38+
'createElement',
39+
'createBbox'
3940
],
4041
'node_modules/react-dom/index.js': ['render']
4142
}

0 commit comments

Comments
 (0)