Skip to content

Commit 1b39857

Browse files
committed
Replaced deprecated deps.
1 parent a57b879 commit 1b39857

19 files changed

+47
-346
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"typescript.tsdk": "node_modules\\typescript\\lib"
2+
"typescript.tsdk": "node_modules/typescript/lib"
33
}

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changes Logs
22

3+
## v1.0.2
4+
5+
- Migrate deps from `@litert/events` to `@litert/observable`.
6+
7+
## v1.0.1
8+
9+
- Refactored the code to improve the performance and maintainability.
10+
311
## v0.1.8
412

513
- Removed KEEP-ALIVE.

package-lock.json

Lines changed: 12 additions & 319 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@litert/redis",
3-
"version": "1.0.1-dev-20190908",
3+
"version": "1.0.2",
44
"description": "A redis protocol implement for Node.js.",
55
"main": "./lib/index.js",
66
"scripts": {
@@ -32,7 +32,7 @@
3232
"typings": "./lib/index.d.ts",
3333
"dependencies": {
3434
"@litert/core": "^1.0.3",
35-
"@litert/events": "^0.2.0"
35+
"@litert/observable": "^0.1.0"
3636
},
3737
"devDependencies": {
3838
"@types/node": "^12.0.8",

src/examples/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Angus.Fenying <fenying@litert.org>
2+
* Copyright 2020 Angus.Fenying <fenying@litert.org>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/lib/BaseClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 Angus.Fenying <fenying@litert.org>
2+
* Copyright 2020 Angus.Fenying <fenying@litert.org>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)