@adonisjs/redis
Advanced tools
Comparing version 5.0.6 to 5.0.7
@@ -25,3 +25,3 @@ /** | ||
const redisConfig: RedisConfig = { | ||
connection: Env.get('REDIS_CONNECTION', 'local') as 'local', | ||
connection: Env.get('REDIS_CONNECTION'), | ||
@@ -40,5 +40,5 @@ connections: { | ||
local: { | ||
host: Env.get('REDIS_HOST', '127.0.0.1') as string, | ||
port: Env.get('REDIS_PORT', '6379') as string, | ||
password: Env.get('REDIS_PASSWORD', '') as string, | ||
host: Env.get('REDIS_HOST'), | ||
port: Env.get('REDIS_PORT'), | ||
password: Env.get('REDIS_PASSWORD', ''), | ||
db: 0, | ||
@@ -45,0 +45,0 @@ keyPrefix: '', |
{ | ||
"name": "@adonisjs/redis", | ||
"version": "5.0.6", | ||
"version": "5.0.7", | ||
"description": "AdonisJS addon for Redis", | ||
@@ -10,3 +10,4 @@ "main": "build/providers/RedisProvider.js", | ||
"build/src", | ||
"build/templates" | ||
"build/templates", | ||
"build/instructions.md" | ||
], | ||
@@ -19,3 +20,3 @@ "types": "build/adonis-typings/index.d.ts", | ||
"clean": "del build", | ||
"copyfiles": "copyfiles \"templates/**/*.txt\" build", | ||
"copyfiles": "copyfiles \"templates/**/*.txt\" \"instructions.md\" build", | ||
"compile": "npm run lint && npm run clean && tsc", | ||
@@ -105,2 +106,3 @@ "build": "npm run compile && npm run copyfiles", | ||
"adonisjs": { | ||
"instructionsMd": "./build/instructions.md", | ||
"templates": { | ||
@@ -107,0 +109,0 @@ "config": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55773
30