Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion configs/eslint-config-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"eslint-plugin-react-hooks": "^4.2.0"
},
"devDependencies": {
"prettier": "2.3.2"
"prettier": "^3.5.3"
},
"scripts": {
"check": "npm run lint",
Expand Down
8 changes: 4 additions & 4 deletions configs/mocha-config-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@
"access": "public"
},
"devDependencies": {
"@mongodb-js/prettier-config-devtools": "^1.0.0",
"prettier": "^2.3.2",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"prettier": "^3.5.3",
"react": ">=16"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"chai": "^4.3.4",
"chai": "^4.5.0",
"chai-dom": "^1.9.0",
"chai-enzyme": "^1.0.0-beta.1",
"enzyme": "^3.11.0",
Expand All @@ -41,6 +41,6 @@
"react-16-node-hanging-test-fix": "^1.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"why-is-node-running": "^2.2.2"
"why-is-node-running": "^2.3.0"
}
}
4 changes: 2 additions & 2 deletions configs/mocha-config-devtools/react.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ describe('mocha-config-devtools/react', function () {
const tag = document.createElement('style');
tag.appendChild(
document.createTextNode(
`@container compass-workspace-container (width < 900px){.test{display:none;}}`
)
`@container compass-workspace-container (width < 900px){.test{display:none;}}`,
),
);
document.head.appendChild(tag);
});
Expand Down
2 changes: 1 addition & 1 deletion configs/mocha-config-devtools/register/why-node-running.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports.mochaHooks = {
const timeout = setTimeout(() => {
console.log(
"if the process still running, run kill -SIGINFO %s to see what's keeping it",
process.pid
process.pid,
);
}, 10000);
timeout.unref?.();
Expand Down
4 changes: 2 additions & 2 deletions configs/prettier-config-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"license": "SSPL",
"main": "index.json",
"peerDependencies": {
"prettier": "^2.3.2"
"prettier": "^3.5.3"
},
"devDependencies": {
"prettier": "^2.3.2"
"prettier": "^3.5.3"
},
"scripts": {
"check": "npm run lint",
Expand Down
2 changes: 1 addition & 1 deletion configs/tsconfig-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"devDependencies": {
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"prettier": "^2.3.2"
"prettier": "^3.5.3"
},
"scripts": {
"check": "npm run lint",
Expand Down
Loading
Loading