Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jun 29, 2023
1 parent 0429110 commit 69cc80c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/mem-store.js.map

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seneca-mem-store",
"version": "8.0.1",
"version": "8.1.0",
"description": "Seneca in-memory data storage plugin.",
"main": "dist/mem-store.js",
"type": "commonjs",
Expand Down
1 change: 0 additions & 1 deletion src/mem-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ let internals = {
name: 'mem-store',
}


type Options = {
prefix?: string
idlen?: number
Expand Down
9 changes: 1 addition & 8 deletions test/quick.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
const Seneca = require('seneca')


run()

async function run() {

const seneca = Seneca()
.test()
.use('promisify')
.use('entity')
.use('..')
const seneca = Seneca().test().use('promisify').use('entity').use('..')

await seneca.ready()

Expand All @@ -21,5 +15,4 @@ async function run() {

const list = await seneca.entity('foo').list$()
console.log(list)

}

0 comments on commit 69cc80c

Please sign in to comment.