Skip to content

Commit

Permalink
Change: post-publish nest.land 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jswildcards committed Oct 17, 2020
1 parent 2e86285 commit a136ea5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
12 changes: 7 additions & 5 deletions egg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ name: filedb
description: ⚡ A lightweight local JSON database for Deno.
repository: 'https://github.com/jswildcards/filedb'
unstable: true
version: 0.0.3
checkAll: true
unlisted: false
entry: ./mod.ts
files:
- ./example/**/*
- ./README.md
- ./mod.ts
- ./deps.ts
- ./README.md
- ./src/**/*
- ./example/**/*
- ./mod.ts
version: 0.0.4
checkAll: true
unlisted: false
2 changes: 1 addition & 1 deletion example/hello_world.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FileDB, Document } from "../mod.ts";
import { Document, FileDB } from "../mod.ts";

interface User extends Document {
firstName?: string;
Expand Down
2 changes: 1 addition & 1 deletion example/with_oak.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Application, Router } from "https://deno.land/x/oak/mod.ts";
import { FileDB, Document } from "../mod.ts";
import { Document, FileDB } from "../mod.ts";

interface User extends Document {
username?: string;
Expand Down
1 change: 0 additions & 1 deletion src/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export class Collection<T extends Document = Document> {
return this.findOne({ id: el.id } as T);
}


/**
* Bulk Insert
*
Expand Down

0 comments on commit a136ea5

Please sign in to comment.