Skip to content

Commit

Permalink
changelog, 2.0.0-dev.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mapsam committed Oct 2, 2024
1 parent 8b8a6fd commit 6c9d26c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 2.0.0

```js
import * as tilebelt from '@mapbox/tilebelt';
```

- Migrate to typescript
- No default export
- Use GitHub Actions
- Test with vitest and Node.js 20.x
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mapbox/tilebelt",
"version": "2.0.0",
"version": "2.0.0-dev.1",
"description": "simple tile utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ test('tileToBBOX', () => {
test('getParent', () => {
const parent = tilebelt.getParent(tile1);
expect(parent).toStrictEqual([2, 5, 9]);
console.log(tilebelt.getParent([10, 15, 8]))
});

test('getSiblings', () => {
Expand Down

0 comments on commit 6c9d26c

Please sign in to comment.