Comparing version 6.2.3 to 6.2.4
# 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 @@ |
@@ -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
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
831160