mongodb 7.3.0-dev.20260613.sha.3ba2dd2f → 7.3.0-dev.20260623.sha.b17288ce
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.
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mongodb",
|
|
3
|
-
"version": "7.3.0-dev.
|
|
3
|
+
"version": "7.3.0-dev.20260623.sha.b17288ce",
|
|
4
4
|
"description": "The official MongoDB driver for Node.js",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -141,8 +141,10 @@
|
|
|
141
141
|
"check:dts": "npm run build:bundle && node ./node_modules/typescript/bin/tsc --target es2023 --module commonjs --noEmit mongodb.d.ts && tsd",
|
|
142
142
|
"check:search-indexes": "npm run build:bundle && nyc mocha --config test/mocha_mongodb.js test/manual/search-index-management.prose.test.ts",
|
|
143
143
|
"check:test": "npm run build:bundle && nyc mocha --config test/mocha_mongodb.js test/integration",
|
|
144
|
+
"check:test:debug": "npm run mocha:debug -- --config test/mocha_mongodb.js test/integration",
|
|
144
145
|
"check:test-bundled": "MONGODB_BUNDLED=true npm run check:test",
|
|
145
146
|
"check:unit": "npm run build:bundle && nyc mocha test/unit",
|
|
147
|
+
"check:unit:debug": "npm run mocha:debug -- test/unit",
|
|
146
148
|
"check:unit-bundled": "MONGODB_BUNDLED=true npm run check:unit",
|
|
147
149
|
"check:ts": "node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit",
|
|
148
150
|
"check:atlas": "npm run build:bundle && nyc mocha --config test/manual/mocharc.js test/manual/atlas_connectivity.test.ts",
|
|
@@ -157,6 +159,7 @@
|
|
|
157
159
|
"check:csfle": "npm run build:bundle && nyc mocha --config test/mocha_mongodb.js test/integration/client-side-encryption",
|
|
158
160
|
"check:snappy": "npm run build:bundle && nyc mocha test/unit/assorted/snappy.test.js",
|
|
159
161
|
"check:x509": "npm run build:bundle && nyc mocha test/manual/x509_auth.test.ts",
|
|
162
|
+
"mocha:debug": "npm run build:bundle && node --inspect --enable-source-maps --no-experimental-strip-types ./node_modules/mocha/bin/mocha.js",
|
|
160
163
|
"build:bundle": "npm run bundle:driver && npm run bundle:types && npm run build:runtime-barrel",
|
|
161
164
|
"build:runtime-barrel": "node etc/build-runtime-barrel.mjs",
|
|
162
165
|
"bundle:driver": "node etc/bundle-driver.mjs",
|