Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Make necessary pre-release changes #15

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
1. Create your `app.js` file.

```javascript
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";
const service = new Moogle();
service.addItem(["hello"], "world");

Expand All @@ -149,7 +149,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
1. Create your `app.ts` file.

```typescript
import { Moogle } from "https://deno.land/x/moogle@v0.0.8/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v1.0.0/mod.ts";
const serviceWithoutTypes = new Moogle();
// Or use the following syntax to specify a type (in this case, it's a string)
// const serviceWithTypes = new Moogle<string>();
Expand Down Expand Up @@ -185,7 +185,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
<body>
<p>Open up your console to see Moogle working.</p>
<script type="module">
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";
const service = new Moogle();
service.addItem(["hello"], "world");

Expand Down Expand Up @@ -239,7 +239,7 @@ inputs into a search field and see the results in a results field.
2. Add the following script before the closing `</body>` tag.
```html
<script type="module">
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";

// Set up Moogle and add some items you can search for
const service = new Moogle();
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.8",
"version": "1.0.0",
"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.8",
"version": "1.0.0",
"description": "An easy way to \"Google\" your \"Map\" using search terms",
"main": "./lib/cjs/Moogle.js",
"types": "./lib/cjs/Moogle.d.ts",
Expand Down