@mongodb-js/compass-shell 2.19.2 → 2.22.0
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/lib/1.js +26201 -1676
- package/lib/2.js +28 -18
- package/lib/index.js +2299 -5088
- package/package.json +19 -22
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mongodb-js/compass-shell",
|
|
3
3
|
"productName": "Compass Shell plugin",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.22.0",
|
|
5
5
|
"apiVersion": "3.0.0",
|
|
6
6
|
"description": "Compass Shell Plugin",
|
|
7
7
|
"main": "lib/index.js",
|
|
@@ -15,17 +15,14 @@
|
|
|
15
15
|
"precompile": "npm run clean",
|
|
16
16
|
"compile": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.config.js",
|
|
17
17
|
"compile:watch": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.config.js --watch",
|
|
18
|
-
"prestart": "electron-rebuild -o interruptor",
|
|
19
18
|
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.dev.config.js",
|
|
20
|
-
"test-check-ci": "npm run cover && npm run test:karma && npm run compile && npm run check",
|
|
21
|
-
"prestart:watch": "electron-rebuild -o interruptor",
|
|
22
19
|
"start:watch": "npm run clean && webpack --config ./config/webpack.watch.config.js",
|
|
23
|
-
"pretest": "node ../../scripts/rebuild.js interruptor",
|
|
24
20
|
"test": "cross-env NODE_ENV=test mocha-webpack \"./src/**/*.spec.js\"",
|
|
25
21
|
"test-ci": "npm run test",
|
|
26
|
-
"test
|
|
27
|
-
"test
|
|
28
|
-
"
|
|
22
|
+
"test-ci-electron": "echo \"TODO(COMPASS-5555): These tests are broken and disabled for now\"",
|
|
23
|
+
"test-watch": "cross-env NODE_ENV=test mocha-webpack \"./src/**/*.spec.js\" --watch",
|
|
24
|
+
"test-electron": "xvfb-maybe cross-env NODE_ENV=test karma start",
|
|
25
|
+
"test-cov": "echo",
|
|
29
26
|
"check": "npm run lint && npm run depcheck",
|
|
30
27
|
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
|
|
31
28
|
"depcheck": "depcheck",
|
|
@@ -46,18 +43,19 @@
|
|
|
46
43
|
"access": "public"
|
|
47
44
|
},
|
|
48
45
|
"dependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@mongodb-js/
|
|
51
|
-
"@
|
|
52
|
-
"@mongosh/
|
|
53
|
-
"@mongosh/
|
|
54
|
-
"@mongosh/
|
|
46
|
+
"@leafygreen-ui/code": "^9.4.0",
|
|
47
|
+
"@mongodb-js/compass-logging": "^0.10.0",
|
|
48
|
+
"@mongodb-js/mongodb-redux-common": "^1.10.0",
|
|
49
|
+
"@mongosh/browser-repl": "^1.2.3",
|
|
50
|
+
"@mongosh/logging": "^1.2.3",
|
|
51
|
+
"@mongosh/node-runtime-worker-thread": "^1.2.3",
|
|
52
|
+
"@mongosh/service-provider-core": "^1.2.3"
|
|
55
53
|
},
|
|
56
54
|
"peerDependencies": {
|
|
57
|
-
"@mongodb-js/compass-components": "^0.
|
|
55
|
+
"@mongodb-js/compass-components": "^0.13.0",
|
|
58
56
|
"ace-builds": "^1.4.3",
|
|
59
|
-
"hadron-ipc": "^2.
|
|
60
|
-
"hadron-react-components": "^5.
|
|
57
|
+
"hadron-ipc": "^2.9.0",
|
|
58
|
+
"hadron-react-components": "^5.13.0",
|
|
61
59
|
"prop-types": "^15.7.2",
|
|
62
60
|
"react": "^16.14.0",
|
|
63
61
|
"react-ace": "^9.5.0",
|
|
@@ -72,7 +70,7 @@
|
|
|
72
70
|
"@babel/preset-react": "^7.13.13",
|
|
73
71
|
"@babel/register": "^7.13.16",
|
|
74
72
|
"@hot-loader/react-dom": "^16.9.0",
|
|
75
|
-
"@mongodb-js/compass-components": "^0.
|
|
73
|
+
"@mongodb-js/compass-components": "^0.13.0",
|
|
76
74
|
"ace-builds": "^1.4.3",
|
|
77
75
|
"autoprefixer": "^9.4.6",
|
|
78
76
|
"babel-loader": "^8.2.2",
|
|
@@ -83,7 +81,6 @@
|
|
|
83
81
|
"depcheck": "^1.4.1",
|
|
84
82
|
"electron": "^13.5.1",
|
|
85
83
|
"electron-devtools-installer": "^3.2.0",
|
|
86
|
-
"electron-rebuild": "^2.3.5",
|
|
87
84
|
"enzyme": "^3.11.0",
|
|
88
85
|
"enzyme-adapter-react-16": "^1.15.2",
|
|
89
86
|
"eslint": "^7.25.0",
|
|
@@ -91,8 +88,8 @@
|
|
|
91
88
|
"eslint-plugin-react": "^7.24.0",
|
|
92
89
|
"file-loader": "^5.1.0",
|
|
93
90
|
"font-awesome": "^4.7.0",
|
|
94
|
-
"hadron-app": "^4.
|
|
95
|
-
"hadron-app-registry": "^8.
|
|
91
|
+
"hadron-app": "^4.21.0",
|
|
92
|
+
"hadron-app-registry": "^8.10.0",
|
|
96
93
|
"html-webpack-plugin": "^3.2.0",
|
|
97
94
|
"ignore-loader": "^0.1.2",
|
|
98
95
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
@@ -143,5 +140,5 @@
|
|
|
143
140
|
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
|
|
144
141
|
"email": "compass@mongodb.com"
|
|
145
142
|
},
|
|
146
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "a1283df32eb52881cc00eb73f8d435f772cdbfde"
|
|
147
144
|
}
|