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

mingo

Package Overview
Dependencies
Maintainers
1
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mingo - npm Package Compare versions

Comparing version 6.2.3 to 6.2.4

7

CHANGELOG.md
# Changelog
## 6.2.4 / 2023-01-06
**Fixes**
- Include `package.json` in explicit module exports.
- Create `package.json` files for subpackages to support all ESM bundlers (#298)
## 6.2.3 / 2023-01-05

@@ -4,0 +11,0 @@

8

README.md

@@ -87,4 +87,4 @@ # mingo

import { useOperators, OperatorType } from "mingo/core";
import { $trunc } from "mingo/operators/expression/trunc";
import { $bucket } from "mingo/operators/pipeline/bucket";
import { $trunc } from "mingo/operators/expression";
import { $bucket } from "mingo/operators/pipeline";

@@ -99,4 +99,4 @@ useOperators(OperatorType.EXPRESSION, { $trunc });

const core = require("mingo/core");
const $trunc = require("mingo/operators/expression/trunc").$trunc;
const $bucket = require("mingo/operators/pipeline/bucket").$bucket;
const $trunc = require("mingo/operators/expression").$trunc;
const $bucket = require("mingo/operators/pipeline").$bucket;
const useOperators = core.useOperators;

@@ -103,0 +103,0 @@ const OperatorType = core.OperatorType;

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

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