Skip to content

Commit

Permalink
test: Clean-up all running mongo processes post test in all packages …
Browse files Browse the repository at this point in the history
…that use mongodb-runner COMPASS-4795 (#2189)

* test: Clean-up all running mongo processes post test in all packages that use mongodb-runner

* chore: Use test-ci npm script in all the packages when running tests in CI

We want to be a bit more agressive with the clean-up in CI and this separation
helps to do this
  • Loading branch information
gribnoysup committed May 12, 2021
1 parent 9f846fe commit 4f41a64
Show file tree
Hide file tree
Showing 82 changed files with 343 additions and 112 deletions.
6 changes: 6 additions & 0 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"start": "lerna run start --stream --scope mongodb-compass",
"release": "cd packages/compass && npm run --silent release --",
"test": "lerna run test --concurrency 1 --stream",
"test-evergreen": "lerna run test --concurrency 1",
"test-evergreen": "lerna run test-ci --concurrency 1",
"update-akzidenz-cache": "node scripts/download-akzidenz.js --update-cache",
"download-akzidenz": "lerna exec -- node ../../scripts/download-akzidenz.js"
},
Expand All @@ -31,7 +31,8 @@
"glob": "^7.1.6",
"lerna": "^4.0.0",
"make-fetch-happen": "^8.0.14",
"ora": "^5.4.0"
"ora": "^5.4.0",
"ps-list": "^7.2.0"
},
"engines": {
"node": "^12.4.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/app-migrations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"check": "npm run lint && npm run depcheck",
"test": "mocha",
"lint": "eslint \"./{src,lib,test,bin}/**/*.{js,jsx,ts,tsx}\" \"./*.js\" --no-error-on-unmatched-pattern",
"depcheck": "depcheck || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"author": "Thomas Rueckstiess <thomas@rueckstiess.net>",
"homepage": "http://github.com/mongodb-js/app-migrations",
Expand Down
3 changes: 2 additions & 1 deletion packages/collection-model/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"pretest:electron": "electron-rebuild",
"test:electron": "xvfb-maybe electron-mocha --renderer",
"lint": "eslint \"./{src,lib,test,bin}/**/*.{js,jsx,ts,tsx}\" \"./*.js\" --no-error-on-unmatched-pattern",
"depcheck": "depcheck --ignores=\"mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"dependencies": {
"ampersand-model": "^8.0.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-aggregations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"analyze": "webpack-bundle-analyzer .ghpages/stats.json --no-open --report .ghpages/report.html --mode static --bundleDir lib",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"async,@hot-loader/react-dom,@mongodb-js/compass-crud,@mongodb-js/compass-field-store,@mongodb-js/compass-export-to-language,bson-transpilers,hadron-react-bson,mongodb-js-metrics,mongodb-query-parser,react-dom,storage-mixin,mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"async,@hot-loader/react-dom,@mongodb-js/compass-crud,@mongodb-js/compass-field-store,@mongodb-js/compass-export-to-language,bson-transpilers,hadron-react-bson,mongodb-js-metrics,mongodb-query-parser,react-dom,storage-mixin,mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-app-stores/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-auto-updates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"prepublish": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-collection-stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"hadron-react-bson,mongodb-ns,numeral,react-dom,mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"hadron-react-bson,mongodb-ns,numeral,react-dom,mongodb-data-service\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-collection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"@mongodb-js/compass-aggregations,@mongodb-js/compass-collection-stats,@mongodb-js/compass-crud,@mongodb-js/compass-deployment-awareness,@mongodb-js/compass-explain-plan,@mongodb-js/compass-export-to-language,@mongodb-js/compass-field-store,@mongodb-js/compass-indexes,@mongodb-js/compass-query-bar,@mongodb-js/compass-query-history,@mongodb-js/compass-schema,@mongodb-js/compass-schema-validation,@mongodb-js/compass-status,jquery,mongodb-query-parser,mongodb-language-model,react-dom,debug,hadron-ipc,hadron-react-bson,hadron-react-buttons,hadron-react-components\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"@mongodb-js/compass-aggregations,@mongodb-js/compass-collection-stats,@mongodb-js/compass-crud,@mongodb-js/compass-deployment-awareness,@mongodb-js/compass-explain-plan,@mongodb-js/compass-export-to-language,@mongodb-js/compass-field-store,@mongodb-js/compass-indexes,@mongodb-js/compass-query-bar,@mongodb-js/compass-query-history,@mongodb-js/compass-schema,@mongodb-js/compass-schema-validation,@mongodb-js/compass-status,jquery,mongodb-query-parser,mongodb-language-model,react-dom,debug,hadron-ipc,hadron-react-bson,hadron-react-buttons,hadron-react-components\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-collections-ddl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"hadron-react-buttons,hadron-react-components,react-select-plus,react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"hadron-react-buttons,hadron-react-components,react-select-plus,react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion packages/compass-connect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test",
"posttest-ci": "node ../../scripts/killall-mongo.js"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion packages/compass-crud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"check": "npm run depcheck && npm run lint",
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"start-compass": "node scripts/run-in-compass.js"
"start-compass": "node scripts/run-in-compass.js",
"test-ci": "npm run test",
"posttest-ci": "node ../../scripts/killall-mongo.js"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"storybook": "start-storybook -p 9001 -c .storybook",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-databases-ddl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"@mongodb-js/compass-deployment-awareness,react-dom,debug,hadron-react-buttons\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"@mongodb-js/compass-deployment-awareness,react-dom,debug,hadron-react-buttons\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-deployment-awareness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"storybook:ghpages": "build-storybook -c .storybook -o .ghpages",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,debug,hadron-ipc,hadron-react-components,mongodb\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,debug,hadron-ipc,hadron-react-components,mongodb\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-explain-plan/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"d3,d3-timer,d3-flextree,debug,hadron-react-bson,react-dom,reflux-state-mixin,redux,mongodb-query-parser,react-fontawesome,react-redux,redux-thunk,@mongodb-js/compass-crud,@mongodb-js/compass-field-store,@mongodb-js/compass-indexes,@mongodb-js/compass-query-bar,@mongodb-js/compass-query-history,@mongodb-js/compass-status\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"d3,d3-timer,d3-flextree,debug,hadron-react-bson,react-dom,reflux-state-mixin,redux,mongodb-query-parser,react-fontawesome,react-redux,redux-thunk,@mongodb-js/compass-crud,@mongodb-js/compass-field-store,@mongodb-js/compass-indexes,@mongodb-js/compass-query-bar,@mongodb-js/compass-query-history,@mongodb-js/compass-status\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-export-to-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"storybook": "start-storybook -p 9001 -c .storybook",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-field-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"unlink-plugin": "./scripts/unlink.sh",
"prepublishOnly": "npm run compile",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-find-in-page/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"unlink-plugin": "./scripts/unlink.sh",
"prepublishOnly": "npm run compile",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,hadron-ipc,redux-thunk\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,hadron-ipc,redux-thunk\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-home/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,debug\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-import-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"storybook:ghpages": "build-storybook -c .storybook -o .ghpages",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\"",
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-indexes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"@hot-loader/react-dom,@mongodb-js/compass-deployment-awareness,react-dom,debug,hadron-react-buttons,mongodb-ns\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"@hot-loader/react-dom,@mongodb-js/compass-deployment-awareness,react-dom,debug,hadron-react-buttons,mongodb-ns\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-instance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-loading/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"prepublish": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"@hot-loader/react-dom,hadron-ipc,react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"@hot-loader/react-dom,hadron-ipc,react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-metrics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"prepublishOnly": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom,mongodb-schema\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom,mongodb-schema\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/compass-plugin-info/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"prepublish": "npm run compile",
"prepare": "node ../../scripts/download-akzidenz.js",
"lint": "eslint \"./src/**/*.{js,jsx}\" \"./test/**/*.js\" \"./electron/**/*.js\" \"./config/**/*.{js,jsx}\"",
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\""
"depcheck": "depcheck --ignores=\"react-dom\" || echo \"!!! Dependency check failed, but the failure is ignored by now. This should be addressed in COMPASS-4772 !!!\"",
"test-ci": "npm run test"
},
"license": "Apache-2.0",
"peerDependencies": {
Expand Down
Loading

0 comments on commit 4f41a64

Please sign in to comment.