Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed May 6, 2024
1 parent a6ca23b commit 07cdfd2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v4.7.2

- :bug: Avoid clashing with default fetch use used in index

### v4.7.1

- :rocket: Avoid use of express dependency
Expand Down
7 changes: 6 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { FeatureCollection } from 'geojson';
import { Type, TSchema } from '@sinclair/typebox';
import moment from 'moment-timezone';
import jwt from 'jsonwebtoken';
export * from './src/fetch.js'
import typedfetch from './src/fetch.js'

export interface Event {
type?: string
Expand Down Expand Up @@ -349,3 +349,8 @@ export default class TaskBase {
return true;
}
}

export {
typedfetch as fetch
};

0 comments on commit 07cdfd2

Please sign in to comment.