Skip to content

Commit

Permalink
Merge pull request #7 from drashland/pre-release-changes-moogle
Browse files Browse the repository at this point in the history
chore: Make necessary pre-release changes
  • Loading branch information
Guergeiro authored Apr 7, 2021
2 parents 390ab50 + 81a585c commit bb47e6c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Moogle works in the browser, Node and Deno! How to do it?
In the browser:

```html
<script src="https://unpkg.com/@drashland/moogle@0.0.2"></script>
<script src="https://unpkg.com/@drashland/moogle@0.0.3"></script>
```

In Node:
Expand Down Expand Up @@ -131,13 +131,13 @@ In Deno:

```javascript
// JavaScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.2/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.3/mod.ts";
const service = new Moogle();
```

```typescript
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.2/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.3/mod.ts";
const service = new Moogle<MyType>();
```

Expand Down
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "moogle",
"description": "An easy way to 'Google' your 'Map' using search terms.",
"version": "0.0.2",
"version": "0.0.3",
"stable": true,
"repository": "https://github.com/drashland/moogle",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@drashland/moogle",
"version": "0.0.2",
"version": "0.0.3",
"description": "An easy way to \"Google\" your \"Map\" using search terms",
"main": "./lib/Moogle.js",
"types": "./lib/Moogle.d.ts",
Expand Down

0 comments on commit bb47e6c

Please sign in to comment.