Skip to content

Commit

Permalink
Merge pull request #11 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 committed May 8, 2021
2 parents 116ade1 + 6b86c63 commit b8fc61c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
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.6/lib/esm/Moogle.js"></script>
<script src="https://unpkg.com/@drashland/moogle@0.0.7/lib/esm/Moogle.js"></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.6/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.7/mod.ts";
const service = new Moogle();
```

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

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

0 comments on commit b8fc61c

Please sign in to comment.