Skip to content

Commit ab17cb9

Browse files
committed
make, readme migration
1 parent 78f1b43 commit ab17cb9

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lint:
66
deno lint --ignore=docs/,debug/
77

88
test: clean
9-
deno test --allow-all --parallel --reload --quiet --coverage=coverage tests/ jetstream/tests kv/tests/ os/tests/ service/tests/
9+
deno test --allow-all --parallel --reload --quiet --coverage=coverage src/tests/ jetstream/tests kv/tests/ os/tests/ service/tests/
1010
deno test --allow-all --parallel --reload --quiet --unsafely-ignore-certificate-errors --coverage=coverage unsafe_tests/
1111

1212

migration.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,20 @@ number of issues we would like to address going forward:
2424
In order to satisfy those needs, the NATS JavaScript library will split into
2525
separate libraries which focus on:
2626

27-
- Transport Libraries (nats.js - `@nats/node`, nats.deno `@nats/deno`, nats.ws
28-
`@nats/es-websocket`) - these depend on NatsCore, and only contribute a
29-
transport implementation.
30-
- NatsCore `@nats/core` ("nats-base-client") - publish/subscribe/request-reply.
31-
- JetStream `@nats/jetstream` (depends on `@nats-core`)
32-
- KV `@nats/kv` (depends on JetStream)
33-
- ObjectStore `@nats/obj` (depends on JetStream)
34-
- Services `@nats/services` (depends on NatsCore)
27+
- Transport Libraries (nats.js - `@nats-io/node`, nats.deno `@nats-io/deno`,
28+
nats.ws `@nats/es-websocket`) - these depend on NatsCore, and only contribute
29+
a transport implementation.
30+
- NatsCore `@nats-io/core` ("nats-base-client") -
31+
publish/subscribe/request-reply.
32+
- JetStream `@nats-io/jetstream` (depends on `@nats-core`)
33+
- KV `@nats-io/kv` (depends on JetStream)
34+
- ObjectStore `@nats-io/obj` (depends on JetStream)
35+
- Services `@nats-io/services` (depends on NatsCore)
3536

3637
Your library selection process will start by selecting your runtime, and
3738
importing any additional functionality you may be interested in. The
38-
`@nats/node`, `@nats/deno`, `@nats/es-websocket` depend and re-export
39-
`@nats/core`.
39+
`@nats-io/node`, `@nats-io/deno`, `@nats-io/es-websocket` depend and re-export
40+
`@nats-io/core`.
4041

4142
To use the extended functionality you will need to install and import from the
4243
other libraries and call API to create an instance of the functionality the

0 commit comments

Comments
 (0)