Skip to content

Commit 26c79bc

Browse files
committed
wip
1 parent b3d410e commit 26c79bc

File tree

7 files changed

+678
-243
lines changed

7 files changed

+678
-243
lines changed

mongosh.code-workspace

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "mongosh",
5+
"path": "."
6+
},
7+
{
8+
"name": "📦 @mongosh/arg-parser",
9+
"path": "packages/arg-parser"
10+
},
11+
{
12+
"name": "📦 @mongosh/async-rewriter2",
13+
"path": "packages/async-rewriter2"
14+
},
15+
{
16+
"name": "📦 @mongosh/autocomplete",
17+
"path": "packages/autocomplete"
18+
},
19+
// {
20+
// "name": "📦 @mongosh/browser-repl",
21+
// "path": "packages/browser-repl"
22+
// },
23+
{
24+
"name": "📦 @mongosh/browser-runtime-core",
25+
"path": "packages/browser-runtime-core"
26+
},
27+
{
28+
"name": "📦 @mongosh/browser-runtime-electron",
29+
"path": "packages/browser-runtime-electron"
30+
},
31+
{
32+
"name": "📦 @mongosh/build",
33+
"path": "packages/build"
34+
},
35+
{
36+
"name": "📦 @mongosh/cli-repl",
37+
"path": "packages/cli-repl"
38+
},
39+
{
40+
"name": "📦 @mongosh/connectivity-tests",
41+
"path": "packages/connectivity-tests"
42+
},
43+
{
44+
"name": "📦 @mongosh/e2e-tests",
45+
"path": "packages/e2e-tests"
46+
},
47+
{
48+
"name": "📦 @mongosh/editor",
49+
"path": "packages/editor"
50+
},
51+
{
52+
"name": "📦 @mongosh/errors",
53+
"path": "packages/errors"
54+
},
55+
{
56+
"name": "📦 @mongosh/history",
57+
"path": "packages/history"
58+
},
59+
{
60+
"name": "📦 @mongosh/i18n",
61+
"path": "packages/i18n"
62+
},
63+
{
64+
"name": "📦 @mongosh/java-shell",
65+
"path": "packages/java-shell"
66+
},
67+
{
68+
"name": "📦 @mongosh/js-multiline-to-singleline",
69+
"path": "packages/js-multiline-to-singleline"
70+
},
71+
{
72+
"name": "📦 @mongosh/logging",
73+
"path": "packages/logging"
74+
},
75+
{
76+
"name": "📦 @mongosh/node-runtime-worker-thread",
77+
"path": "packages/node-runtime-worker-thread"
78+
},
79+
{
80+
"name": "📦 @mongosh/service-provider-core",
81+
"path": "packages/service-provider-core"
82+
},
83+
{
84+
"name": "📦 @mongosh/service-provider-node-driver",
85+
"path": "packages/service-provider-node-driver"
86+
},
87+
{
88+
"name": "📦 @mongosh/shell-api",
89+
"path": "packages/shell-api"
90+
},
91+
{
92+
"name": "📦 @mongosh/shell-bson",
93+
"path": "packages/shell-bson"
94+
},
95+
{
96+
"name": "📦 @mongosh/shell-evaluator",
97+
"path": "packages/shell-evaluator"
98+
},
99+
{
100+
"name": "📦 @mongosh/snippet-manager",
101+
"path": "packages/snippet-manager"
102+
},
103+
{
104+
"name": "📦 @mongosh/testing",
105+
"path": "packages/testing"
106+
},
107+
{
108+
"name": "📦 @mongosh/types",
109+
"path": "packages/types"
110+
}
111+
],
112+
"settings": {
113+
"typescript.tsdk": "node_modules/typescript/lib",
114+
"mochaExplorer.files": "./{src,lib}/**/*.spec.ts",
115+
"mochaExplorer.require": [
116+
"../../scripts/import-expansions.js",
117+
"ts-node/register"
118+
],
119+
"mochaExplorer.timeout": 60000,
120+
"mochaExplorer.ui": "bdd",
121+
"mochaExplorer.esmLoader": false,
122+
"mochaExplorer.monkeyPatch": true,
123+
"mochaExplorer.autoload": true,
124+
"testExplorer.codeLens": true,
125+
"testExplorer.gutterDecoration": true
126+
}
127+
}

package-lock.json

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/arg-parser/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"eslint": "^7.25.0",
4949
"mongodb": "^6.19.0",
5050
"prettier": "^2.8.8",
51+
"strip-ansi": "^7.1.2",
5152
"zod": "^3.25.76 || ^4.1.8"
5253
}
5354
}

0 commit comments

Comments
 (0)