Skip to content

Commit

Permalink
Merge branch 'master' of github.com:drashland/moogle
Browse files Browse the repository at this point in the history
  • Loading branch information
Guergeiro committed Apr 7, 2021
2 parents 53ca358 + 3eeff24 commit 390ab50
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.1"></script>
<script src="https://unpkg.com/@drashland/moogle@0.0.2"></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.1/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.2/mod.ts";
const service = new Moogle();
```

```typescript
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.1/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.2/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.1",
"version": "0.0.2",
"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.1",
"version": "0.0.2",
"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 390ab50

Please sign in to comment.