Skip to content

Commit

Permalink
v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed May 29, 2020
1 parent d171929 commit 7f17797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-scalars",
"version": "1.1.3",
"version": "1.1.5",
"description": "A collection of scalar types not included in base GraphQL.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ObjectID = () => '5e5677d71bdc2ae76344968c';
export const PositiveFloat = () => 123.45;
export const PositiveInt = () => 123;
export const PostalCode = () => '60031';
const URLMock = () => new URL('http://www.test.com/');
const URLMock = () => new URL('http://www.test.com/') as any;
// https://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
export const GUID = () => {
// Public Domain/MIT
Expand Down

0 comments on commit 7f17797

Please sign in to comment.