@mongosh/types 3.12.0 → 3.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.mocharc.json +6 -0
  2. package/package.json +5 -5
package/.mocharc.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "require": ["ts-node/register"],
3
+ "timeout": 15000,
4
+ "reporter": "../../configs/mocha-config-mongosh/reporter.ts",
5
+ "spec": ["./src/*.spec.ts"]
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongosh/types",
3
- "version": "3.12.0",
3
+ "version": "3.14.1",
4
4
  "description": "Types for mongosh internals",
5
5
  "author": "Anna Henningsen <anna.henningsen@mongodb.com>",
6
6
  "homepage": "https://github.com/mongodb-js/mongosh/tree/main/packages/types#readme",
@@ -24,7 +24,7 @@
24
24
  "eslint": "eslint",
25
25
  "lint": "npm run eslint . && npm run prettier -- --check .",
26
26
  "prepublish": "npm run compile",
27
- "test": "mocha --timeout 15000 -r ts-node/register --reporter \"../../configs/mocha-config-mongosh/reporter.ts\" \"./src/*.spec.ts\"",
27
+ "test": "mocha",
28
28
  "test-ci": "node ../../scripts/run-if-package-requested.js npm test",
29
29
  "test-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test",
30
30
  "test-ci-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test-ci",
@@ -38,7 +38,7 @@
38
38
  "unitTestsOnly": true
39
39
  },
40
40
  "dependencies": {
41
- "@mongodb-js/devtools-connect": "^3.9.3"
41
+ "@mongodb-js/devtools-connect": "^3.9.4"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@mongodb-js/eslint-config-mongosh": "^1.0.0",
@@ -46,8 +46,8 @@
46
46
  "@mongodb-js/tsconfig-mongosh": "^1.0.0",
47
47
  "depcheck": "^1.4.7",
48
48
  "eslint": "^7.25.0",
49
- "mongodb": "^6.18.0",
49
+ "mongodb": "^6.19.0",
50
50
  "prettier": "^2.8.8"
51
51
  },
52
- "gitHead": "535ab3f767e2a27c05a6be6a299e0285eebfcc9e"
52
+ "gitHead": "d2069810a846a535c51c88929224a57e49960778"
53
53
  }