@noy-db/to-memory 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @noy-db/to-memory
2
2
 
3
- > In-memory adapter for [noy-db](https://github.com/noy-db/core) — ideal for testing and ephemeral workloads.
3
+ > In-memory adapter for [noy-db](https://github.com/noy-db/core), shipped from [noy-db-to](https://github.com/noy-db/to) — ideal for testing and ephemeral workloads.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@noy-db/to-memory.svg)](https://www.npmjs.com/package/@noy-db/to-memory)
6
6
 
@@ -32,4 +32,4 @@ Data lives only in the current process — it's gone when the process exits. Per
32
32
 
33
33
  ## License
34
34
 
35
- MIT © vLannaAi — see the [noy-db repo](https://github.com/noy-db/core) for full documentation.
35
+ Apache-2.0 © vLannaAi — see the [noy-db repo](https://github.com/noy-db/core) for full documentation.
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@noy-db/to-memory",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "In-memory adapter for noy-db — ideal for testing, development, and ephemeral workloads",
5
5
  "license": "Apache-2.0",
6
6
  "author": "vLannaAi <vicio@lanna.ai>",
7
- "homepage": "https://github.com/noy-db/core/tree/main/packages/to-memory#readme",
7
+ "homepage": "https://github.com/noy-db/to/tree/main/to-memory#readme",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/noy-db/core.git",
11
- "directory": "packages/to-memory"
10
+ "url": "git+https://github.com/noy-db/to.git",
11
+ "directory": "to-memory"
12
12
  },
13
13
  "bugs": {
14
- "url": "https://github.com/noy-db/core/issues"
14
+ "url": "https://github.com/noy-db/to/issues"
15
15
  },
16
16
  "type": "module",
17
17
  "sideEffects": false,
@@ -57,6 +57,6 @@
57
57
  "build": "tsup",
58
58
  "test": "vitest run",
59
59
  "lint": "eslint src/",
60
- "typecheck": "tsc --noEmit"
60
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json"
61
61
  }
62
62
  }