Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configs/tsconfig-mongosh/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"removeComments": true,
"target": "es2018",
"lib": ["es2019"],
"module": "commonjs",
"moduleResolution": "node"
"module": "nodenext",
"moduleResolution": "nodenext"
}
}
124 changes: 100 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 19 additions & 2 deletions packages/arg-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
"version": "3.22.2",
"description": "MongoDB Shell CLI Argument List Parser Package",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./arg-parser": {
"default": "./lib/arg-parser.js",
"types": "./lib/arg-parser.d.ts"
}
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
Expand Down Expand Up @@ -37,16 +48,22 @@
"dependencies": {
"@mongosh/errors": "2.4.4",
"@mongosh/i18n": "^2.19.0",
"mongodb-connection-string-url": "^3.0.2"
"mongodb-connection-string-url": "^3.0.2",
"yargs-parser": "^20.2.4"
},
"peerDependencies": {
"zod": "^3.25.76"
},
"devDependencies": {
"@mongodb-js/devtools-connect": "^3.9.4",
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/yargs-parser": "^21.0.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb": "^6.19.0",
"prettier": "^2.8.8"
"prettier": "^2.8.8",
"strip-ansi": "^7.1.2"
}
}
Loading
Loading