@bejibun/redis 0.1.11 → 0.1.12

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.
@@ -1,4 +1,4 @@
1
- import RedisBuilder from "./builders/RedisBuilder";
1
+ import RedisBuilder from "../builders/RedisBuilder";
2
2
  export default class Redis {
3
3
  static connection(name) {
4
4
  return RedisBuilder.connection(name);
@@ -0,0 +1,2 @@
1
+ import Redis from "./facades/Redis";
2
+ export default Redis;
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ import Redis from "./facades/Redis";
2
+ export default Redis;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bejibun/redis",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Redis for Bejibun Framework",
5
5
  "keywords": [
6
6
  "bun",
@@ -37,7 +37,7 @@
37
37
  "build": "bun run clean && tsc -p tsconfig.json && tsc-alias -p tsconfig.json"
38
38
  },
39
39
  "dependencies": {
40
- "@bejibun/core": "^0.1.20"
40
+ "@bejibun/core": "^0.1.21"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/bun": "latest",
File without changes