Socket
Socket
Sign inDemoInstall

@amplication/plugin-db-mongo

Package Overview
Dependencies
0
Maintainers
8
Versions
73
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.9 to 1.4.10

16

.eslintrc.json
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
"ignorePatterns": ["!**/*"]
}

6

package.json
{
"name": "@amplication/plugin-db-mongo",
"version": "1.4.9",
"version": "1.4.10",
"description": "Use a Mongo database in a service generated by Amplication",

@@ -11,4 +11,3 @@ "main": "dist/index.js",

"prebuild": "rimraf dist",
"test": "jest",
"format:write": "prettier --write \"**/*.{js,ts}\""
"test": "jest"
},

@@ -44,2 +43,3 @@ "author": "Mor Hagbi",

"jest": {
"passWithNoTests": true,
"moduleFileExtensions": [

@@ -46,0 +46,0 @@ "js",

@@ -24,3 +24,4 @@ import { DsgContext } from "@amplication/code-gen-types";

{ DB_PASSWORD: "admin" },
{ DB_PORT: 27017 },
{ DB_PORT: (27017).toString() },
{ DB_NAME: "my-db" },
{

@@ -42,3 +43,4 @@ DB_URL: "mongodb://admin:admin@localhost:27017/my-db?authSource=admin",

{ DB_PASSWORD: "admin" },
{ DB_PORT: newPort },
{ DB_PORT: newPort.toString() },
{ DB_NAME: "my-db" },
{

@@ -45,0 +47,0 @@ DB_URL: `mongodb://admin:admin@localhost:${newPort}/my-db?authSource=admin`,

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc