Skip to content

Commit

Permalink
Merge d5c0650 into 4cee1ee
Browse files Browse the repository at this point in the history
  • Loading branch information
lilsweetcaligula committed May 26, 2021
2 parents 4cee1ee + d5c0650 commit 83cfac6
Show file tree
Hide file tree
Showing 15 changed files with 1,085 additions and 505 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm install
- run: npm run build --if-present
- run: npm test

Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### 6.0.0 - 2021-05-24

* Added upsert support


#### 5.0.0 - 2020-12-09

* Convert to typescript
Expand Down
5 changes: 0 additions & 5 deletions dist/lib/common.d.ts

This file was deleted.

28 changes: 0 additions & 28 deletions dist/lib/common.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/lib/common.js.map

This file was deleted.

9 changes: 9 additions & 0 deletions dist/lib/intern.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export declare class intern {
static is_new(ent: any): boolean;
static is_upsert(msg: any): boolean;
static find_mement(entmap: any, base_ent: any, filter: any): any;
static update_mement(entmap: any, base_ent: any, filter: any, new_attrs: any): any;
static should_merge(ent: any, plugin_opts: any): boolean;
static listents(seneca: any, entmap: any, qent: any, q: any, done: any): void;
static clean_array(ary: string[]): string[];
}
178 changes: 178 additions & 0 deletions dist/lib/intern.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/lib/intern.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 83cfac6

Please sign in to comment.