Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@adonisjs/redis

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/redis - npm Package Compare versions

Comparing version 5.0.6 to 5.0.7

build/instructions.md

8

build/templates/config.txt

@@ -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": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc